Files
docs/node_modules/mark.js/test/specs/across-elements/regexp/infinite.js
yinxue 9e1b8bdc9d
Some checks failed
CI Pipeline / build (push) Failing after 3m23s
first-commit
2025-08-27 14:05:33 +08:00

24 lines
559 B
JavaScript

'use strict';
describe(
'mark with acrossElements and regular expression with infinite matches',
function() {
var $ctx;
beforeEach(function(done) {
loadFixtures('across-elements/regexp/infinite.html');
$ctx = $('.across-elements-regexp-infinite');
new Mark($ctx[0]).markRegExp(/(|)/gmi, {
'acrossElements': true,
'done': done
});
});
it(
'should not mark regular expressions with infinite matches',
function() {
expect($ctx.find('mark')).toHaveLength(0);
}
);
}
);