Skip to content

Commit

Permalink
Fix: Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sarvaje committed Mar 6, 2019
1 parent 4f71371 commit b69f077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/parser-html/tests/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ test('If `fetch::end::html` is received, then the code should be parsed and the
t.is(div.outerHTML(), '<div id="test">Test</div>');
t.is(div.nodeName.toLowerCase(), 'div');
t.is(div.getAttribute('id'), 'test');
t.is(location && location.line, 1);
t.is(location && location.line, 0);
t.is(location && location.column, 16);
t.is(id && id.value, 'test');
t.true(div.isSame(div2));
Expand Down

0 comments on commit b69f077

Please sign in to comment.