Warp/node_modules/mark.js/test/specs/across-elements/regexp/infinite.js

24 lines
559 B
JavaScript
Raw Normal View History

2024-01-05 12:14:38 +00:00
'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);
}
);
}
);