mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 03:33:39 +08:00
29 lines
510 B
Plaintext
29 lines
510 B
Plaintext
|
import {
|
||
|
default as highlightText,
|
||
|
CLASS_NAME
|
||
|
} from "discourse/lib/highlight-text";
|
||
|
|
||
|
QUnit.module("lib:highlight-text");
|
||
|
|
||
|
QUnit.test("highlighting text", assert => {
|
||
|
fixture().html(
|
||
|
`
|
||
|
<p>This is some text to highlight</p>
|
||
|
`
|
||
|
);
|
||
|
|
||
|
highlightText(fixture(), "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"
|
||
|
);
|
||
|
});
|