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,21 @@
'use strict';
describe('basic mark with accuracy partially', function() {
var $ctx;
beforeEach(function(done) {
loadFixtures('basic/accuracy-partially.html');
$ctx = $('.basic-accuracy-partially');
new Mark($ctx[0]).mark('lorem', {
'accuracy': 'partially',
'separateWordSearch': false,
'done': done
});
});
it('should wrap the right matches', function() {
expect($ctx.find('mark')).toHaveLength(4);
$ctx.find('mark').each(function() {
expect($(this).text()).toBe('Lorem');
});
});
});