first commit

This commit is contained in:
2026-01-09 23:05:52 -05:00
commit dec0c8e4e4
4203 changed files with 824454 additions and 0 deletions

18
node_modules/mark.js/test/specs/basic/context-array.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict';
describe('basic mark called with an array of contexts', function() {
var $ctx;
beforeEach(function(done) {
loadFixtures('basic/context-array.html');
$ctx = $('.basic-context-array');
new Mark($ctx.get()).mark('lorem', {
'diacritics': false,
'separateWordSearch': false,
'done': done
});
});
it('should wrap matches', function() {
expect($ctx.find('mark')).toHaveLength(8);
});
});