mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
23 lines
498 B
JavaScript
23 lines
498 B
JavaScript
'use strict';
|
|
describe('basic mark with no options', function() {
|
|
var $ctx, err;
|
|
beforeEach(function() {
|
|
loadFixtures('basic/no-options.html');
|
|
|
|
$ctx = $('.basic-no-options');
|
|
err = false;
|
|
try {
|
|
new Mark($ctx[0]).mark('lorem ipsum');
|
|
} catch (e){
|
|
err = true;
|
|
}
|
|
});
|
|
|
|
it('should not throw an error', function() {
|
|
expect(err).toBe(false);
|
|
});
|
|
it('should wrap matches', function() {
|
|
expect($ctx.find('mark').length).toBeGreaterThan(0);
|
|
});
|
|
});
|