Skip to content

Commit d829aaa

Browse files
committed
doctype test
1 parent c8e9c29 commit d829aaa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test.js

+4
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ describe('PostHTML-Parser test', function() {
1919
it('last comment', function() {
2020
expect(parser('<!--comment-->')).to.eql(['<!--comment-->']);
2121
});
22+
23+
it('doctype', function() {
24+
expect(parser('<!doctype html><html></html>')).to.eql(['<!doctype html>', { tag: 'html' }]);
25+
});
2226
});

0 commit comments

Comments
 (0)