mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
Revert "Rename all test files from JS -> ES6"
This reverts commit 2abe85b8344de1102c1589a9ac9421a8b296f2b5.
This commit is contained in:
@ -1,30 +0,0 @@
|
||||
import { acceptance } from "helpers/qunit-helpers";
|
||||
import { setCustomHTML } from "discourse/helpers/custom-html";
|
||||
import PreloadStore from "preload-store";
|
||||
|
||||
acceptance("CustomHTML set");
|
||||
|
||||
QUnit.test("has no custom HTML in the top", async assert => {
|
||||
await visit("/static/faq");
|
||||
assert.ok(!exists("span.custom-html-test"), "it has no markup");
|
||||
});
|
||||
|
||||
QUnit.test("renders set HTML", async assert => {
|
||||
setCustomHTML("top", '<span class="custom-html-test">HTML</span>');
|
||||
|
||||
await visit("/static/faq");
|
||||
assert.equal(
|
||||
find("span.custom-html-test").text(),
|
||||
"HTML",
|
||||
"it inserted the markup"
|
||||
);
|
||||
});
|
||||
|
||||
QUnit.test("renders preloaded HTML", async assert => {
|
||||
PreloadStore.store("customHTML", {
|
||||
top: "<span class='cookie'>monster</span>"
|
||||
});
|
||||
|
||||
await visit("/static/faq");
|
||||
assert.equal(find("span.cookie").text(), "monster", "it inserted the markup");
|
||||
});
|
Reference in New Issue
Block a user