Warp/node_modules/mark.js/test/specs/basic/no-match.js

25 lines
566 B
JavaScript
Raw Normal View History

2024-01-05 12:14:38 +00:00
'use strict';
describe('basic mark with noMatch callback', function() {
var $ctx, notFound;
beforeEach(function(done) {
loadFixtures('basic/main.html');
notFound = [];
$ctx = $('.basic');
new Mark($ctx[0]).mark('test', {
'diacritics': false,
'separateWordSearch': false,
'noMatch': function(term) {
notFound.push(term);
},
'done': function() {
done();
}
});
});
it('should call the noMatch callback for not found terms', function() {
expect(notFound).toEqual(['test']);
});
});