mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 22:15:13 +00:00
24 lines
559 B
JavaScript
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);
|
|
}
|
|
);
|
|
}
|
|
);
|