devstar插件

This commit is contained in:
2025-07-26 16:40:29 +08:00
commit 30033daafe
4387 changed files with 1041101 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
'use strict';
describe('basic mark with accuracy complementary and limiters', function() {
var $ctx;
beforeEach(function(done) {
loadFixtures('basic/accuracy-complementary-limiters.html');
$ctx = $('.basic-accuracy-complementary-limiters');
new Mark($ctx[0]).mark('test', {
'accuracy': {
'value': 'complementary',
'limiters': [
',', '.', '-', '!', '"', '\'', '(', ')', '%'
]
},
'separateWordSearch': false,
'done': done
});
});
it('should wrap matches without custom limiters', function() {
expect($ctx.find('mark')).toHaveLength(8);
var textOpts = ['loremtestlorem', 'loremtest', 'test'];
$ctx.find('mark').each(function() {
expect($.inArray($(this).text(), textOpts)).toBeGreaterThan(-1);
});
});
});