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

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);
});
});