We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e4c2d commit 17b0c04Copy full SHA for 17b0c04
test/test.js
@@ -58,7 +58,7 @@ describe('PostHTML-Parser test', function() {
58
expect(parser('<!--comment-->')).to.eql(['<!--comment-->']);
59
});
60
61
- it('should be parse comment', function() {
+ it('should be parse CDATA', function() {
62
expect(parser('<script><![CDATA[console.log(1);]]></script>', {xmlMode: true}))
63
.to.eql([{tag: 'script', content: ['console.log(1);']}]);
64
0 commit comments