import highlightSearch, { CLASS_NAME } from "discourse/lib/highlight-search"; import { fixture } from "discourse/tests/helpers/qunit-helpers"; import { module, test } from "qunit"; module("Unit | Utility | highlight-search", function () { test("highlighting text", function (assert) { fixture().html( `

This is some text to highlight

` ); highlightSearch(fixture()[0], "some text"); const terms = []; fixture(`.${CLASS_NAME}`).each((_, elem) => { terms.push(elem.textContent); }); assert.equal( terms.join(" "), "some text", "it should highlight the terms correctly" ); }); test("highlighting unicode text", function (assert) { fixture().html( `

This is some தமிழ் & русский text to highlight

` ); highlightSearch(fixture()[0], "தமிழ் & русский"); const terms = []; fixture(`.${CLASS_NAME}`).each((_, elem) => { terms.push(elem.textContent); }); assert.equal( terms.join(" "), "தமிழ் & русский", "it should highlight the terms correctly" ); }); });