Fix dependencies: Add flag-icons, tailwind directives, and postcss config

This commit is contained in:
MivoDev
2026-01-18 11:16:21 +07:00
commit 266a4b1296
10758 changed files with 1547435 additions and 0 deletions

22
node_modules/mark.js/test/specs/basic/no-options.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
'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);
});
});