Warp/node_modules/mark.js/test/specs/across-elements/iframes/across.js

31 lines
861 B
JavaScript
Raw Permalink Normal View History

2024-01-05 12:14:38 +00:00
'use strict';
describe('mark with acrossElements and matches across iframes', function() {
var $ctx, $elements, errCall;
beforeEach(function(done) {
loadFixtures('across-elements/iframes/across.html');
$elements = $();
$ctx = $('.across-elements-iframes-across');
errCall = 0;
try {
new Mark($ctx[0]).mark(['dolor sit', 'amet. Lorem'], {
'diacritics': false,
'separateWordSearch': false,
'iframes': true,
'acrossElements': true,
'each': function($m) {
$elements = $elements.add($($m));
},
'done': done
});
} catch (e) {
errCall++;
}
}, 30000); // 30 sec timeout
it('should wrap matches across iframes recursively', function() {
expect(errCall).toBe(0);
expect($elements).toHaveLength(30); // including whitespace matches
});
});