mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
21 lines
549 B
JavaScript
21 lines
549 B
JavaScript
'use strict';
|
|
describe('basic mark with accuracy partially', function() {
|
|
var $ctx;
|
|
beforeEach(function(done) {
|
|
loadFixtures('basic/accuracy-partially.html');
|
|
|
|
$ctx = $('.basic-accuracy-partially');
|
|
new Mark($ctx[0]).mark('lorem', {
|
|
'accuracy': 'partially',
|
|
'separateWordSearch': false,
|
|
'done': done
|
|
});
|
|
});
|
|
|
|
it('should wrap the right matches', function() {
|
|
expect($ctx.find('mark')).toHaveLength(4);
|
|
$ctx.find('mark').each(function() {
|
|
expect($(this).text()).toBe('Lorem');
|
|
});
|
|
});
|
|
});
|