This commit is contained in:
NoryiE
2025-02-10 06:00:28 +00:00
parent b0a4a6da9c
commit 71a1fce096
2428 changed files with 0 additions and 1005324 deletions

View File

@@ -1,36 +0,0 @@
'use strict';
describe('basic mark with caseSensitive synonyms', function() {
var $ctx1, $ctx2;
beforeEach(function(done) {
loadFixtures('basic/case-sensitive-synonyms.html');
$ctx1 = $('.basic-case-sensitive-synonyms > div:nth-child(1)');
$ctx2 = $('.basic-case-sensitive-synonyms > div:nth-child(2)');
new Mark($ctx1[0]).mark('Lorem', {
'synonyms': {
'Lorem': 'ipsum'
},
'separateWordSearch': false,
'diacritics': false,
'caseSensitive': true,
'done': function() {
new Mark($ctx2[0]).mark(['one', '2', 'lüfte'], {
'separateWordSearch': false,
'diacritics': false,
'caseSensitive': true,
'synonyms': {
'ü': 'ue',
'one': '1',
'two': '2'
},
'done': done
});
}
});
});
it('should wrap keywords and synonyms', function() {
expect($ctx1.find('mark')).toHaveLength(6);
expect($ctx2.find('mark')).toHaveLength(5);
});
});