/
kochenov
/
universal-modular
Обзор
Документация
Войти
/
kochenov
/
universal-modular
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/mark.js/test/specs/basic/script-style.js
24 строки
631 B
Kochenov Dmitry
feat(foundation): Шаг 1.3 — Установить Node.js 24 + VitePress + настроить конфигурацию
10 июл 2026, 11:06
10 июл 2026, 11:06
70eff21
Код
Авторство
О чём код?
'use strict'; describe( 'basic mark in a context with script-tags and style-tags', function() { var $ctx; beforeEach(function(done) { loadFixtures('basic/script-style.html'); $ctx = $('.basic-script-style'); new Mark($ctx[0]).mark('lorem', { 'diacritics': false, 'separateWordSearch': false, 'done': done }); }); it('should wrap matches', function() { expect($ctx.find('mark')).toHaveLength(4); }); it('should not wrap anything inside these tags', function() { expect($ctx.find('style, script')).not.toContainElement('mark'); }); } );