mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
25 lines
660 B
JavaScript
25 lines
660 B
JavaScript
'use strict';
|
|
describe('mark with regular expression and noMatch callback', function() {
|
|
var $ctx, notFound, notFoundCalled;
|
|
beforeEach(function(done) {
|
|
loadFixtures('regexp/main.html');
|
|
|
|
$ctx = $('.regexp > div:first-child');
|
|
notFound = null;
|
|
notFoundCalled = 0;
|
|
new Mark($ctx[0]).markRegExp(/test/gmi, {
|
|
'noMatch': function(regexp) {
|
|
notFoundCalled++;
|
|
notFound = regexp;
|
|
},
|
|
'done': function() {
|
|
done();
|
|
}
|
|
});
|
|
});
|
|
|
|
it('should call noMatch with the regular expression', function() {
|
|
expect(notFoundCalled).toBe(1);
|
|
expect(notFound instanceof RegExp).toBe(true);
|
|
});
|
|
});
|