Skip to content

Commit 74169cd

Browse files
committed
test: contents are split with '<' in comment, issue #45
1 parent cdd7dbd commit 74169cd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/test.js

+7
Original file line numberDiff line numberDiff line change
@@ -222,4 +222,11 @@ describe('PostHTML-Parser test', function () {
222222
{tag: 'style', content: [' /* width < 800px */ @media (max-width: 800px) { /* selectors */} ']}
223223
]);
224224
});
225+
226+
it('should be parse script contents are split with "<" in comment', function () {
227+
const html = `<script> var str = 'hey <form'; if (!str.match(new RegExp('<(form|iframe)', 'g'))) { /* ... */ }</script>`
228+
expect(parser(html)).to.eql([
229+
{tag: 'script', content: [' var str = \'hey <form\'; if (!str.match(new RegExp(\'<(form|iframe)\', \'g\'))) { /* ... */ }']}
230+
]);
231+
});
225232
});

0 commit comments

Comments
 (0)