mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
28 lines
811 B
JavaScript
28 lines
811 B
JavaScript
|
'use strict';
|
||
|
describe('basic mark with accuracy complementary and limiters', function() {
|
||
|
var $ctx;
|
||
|
beforeEach(function(done) {
|
||
|
loadFixtures('basic/accuracy-complementary-limiters.html');
|
||
|
|
||
|
$ctx = $('.basic-accuracy-complementary-limiters');
|
||
|
new Mark($ctx[0]).mark('test', {
|
||
|
'accuracy': {
|
||
|
'value': 'complementary',
|
||
|
'limiters': [
|
||
|
',', '.', '-', '!', '"', '\'', '(', ')', '%'
|
||
|
]
|
||
|
},
|
||
|
'separateWordSearch': false,
|
||
|
'done': done
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should wrap matches without custom limiters', function() {
|
||
|
expect($ctx.find('mark')).toHaveLength(8);
|
||
|
var textOpts = ['loremtestlorem', 'loremtest', 'test'];
|
||
|
$ctx.find('mark').each(function() {
|
||
|
expect($.inArray($(this).text(), textOpts)).toBeGreaterThan(-1);
|
||
|
});
|
||
|
});
|
||
|
});
|