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,20 @@
'use strict';
describe('basic mark ignore empty synonyms', function() {
var $ctx;
beforeEach(function(done) {
loadFixtures('basic/synonyms-not-empty.html');
$ctx = $('.synonyms-not-empty > div');
new Mark($ctx[0]).mark('lorem', {
'synonyms': {
'lorem': ''
},
'separateWordSearch': false,
'diacritics': false,
'done': done
});
});
it('should ignore empty synonyms', function() {
expect($ctx.find('mark')).toHaveLength(4);
});
});