mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
33 lines
715 B
JavaScript
33 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);
|
||
|
});
|
||
|
});
|