mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
32 lines
715 B
JavaScript
32 lines
715 B
JavaScript
'use strict';
|
|
describe('basic mark with ignoreJoiners and special characters', function() {
|
|
var err, $ctx;
|
|
beforeEach(function(done) {
|
|
loadFixtures('basic/ignore-joiners-escape.html');
|
|
|
|
$ctx = $('.basic-ignore-joiners-escape');
|
|
err = false;
|
|
try {
|
|
new Mark($ctx.get()).mark([
|
|
'Lorem ipsum+',
|
|
'sit*',
|
|
'amet?',
|
|
'$50',
|
|
'{no}',
|
|
'www.happy.com\\'
|
|
], {
|
|
'separateWordSearch': false,
|
|
'ignoreJoiners': true,
|
|
'done': done
|
|
});
|
|
} catch (e) {
|
|
err = true;
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('should find matches', function() {
|
|
expect(err).toBe(false);
|
|
expect($ctx.find('mark')).toHaveLength(9);
|
|
});
|
|
});
|