We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe659e7 commit d1847c7Copy full SHA for d1847c7
test/test.js
@@ -4,6 +4,8 @@ var it = require('mocha').it;
4
var expect = require('chai').expect;
5
6
describe('PostHTML-Parser test', function() {
7
+ it('should be parse doctype in uppercase', function() { expect(parser('<!DOCTYPE html>')).to.eql(['<!DOCTYPE html>']); });
8
+
9
it('should be parse comment', function() {
10
expect(parser('<!--comment-->')).to.eql(['<!--comment-->']);
11
});
0 commit comments