This commit is contained in:
24
node_modules/mark.js/test/specs/basic/no-match.js
generated
vendored
Normal file
24
node_modules/mark.js/test/specs/basic/no-match.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
'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']);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user