test: update html tests

This commit is contained in:
Amaan Qureshi 2024-02-19 05:42:52 -05:00
parent d4067a6ae6
commit f526be8061
2 changed files with 4 additions and 4 deletions

View file

@ -164,7 +164,7 @@ describe('Parser', () => {
tree = parser.parse('<div><span><custom></custom></span></div>');
assert.equal(
tree.rootNode.toString(),
'(fragment (element (start_tag (tag_name)) (element (start_tag (tag_name)) (element (start_tag (tag_name)) (end_tag (tag_name))) (end_tag (tag_name))) (end_tag (tag_name))))',
'(document (element (start_tag (tag_name)) (element (start_tag (tag_name)) (element (start_tag (tag_name)) (end_tag (tag_name))) (end_tag (tag_name))) (end_tag (tag_name))))',
);
}).timeout(5000);