This commit is contained in:
29
node_modules/mark.js/test/specs/basic/done.js
generated
vendored
Normal file
29
node_modules/mark.js/test/specs/basic/done.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
'use strict';
|
||||
describe('basic mark with done callback', function() {
|
||||
var $ctx, doneCalled, totalMatches;
|
||||
beforeEach(function(done) {
|
||||
loadFixtures('basic/main.html');
|
||||
|
||||
totalMatches = doneCalled = 0;
|
||||
$ctx = $('.basic');
|
||||
new Mark($ctx[0]).mark('lorem ipsum', {
|
||||
'diacritics': false,
|
||||
'separateWordSearch': false,
|
||||
'done': function(counter) {
|
||||
doneCalled++;
|
||||
totalMatches = counter;
|
||||
done();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
it('should call the done callback once only', function(done) {
|
||||
setTimeout(function() {
|
||||
expect(doneCalled).toBe(1);
|
||||
done();
|
||||
}, 3000);
|
||||
});
|
||||
it('should call the done callback with total matches', function() {
|
||||
expect(totalMatches).toBe(4);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user