discourse/test/javascripts/acceptance/custom-html-set-test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
894 B
JavaScript
Raw Normal View History

2016-11-23 12:57:50 -05:00
import { acceptance } from "helpers/qunit-helpers";
import { setCustomHTML } from "discourse/helpers/custom-html";
import PreloadStore from "discourse/lib/preload-store";
2016-11-23 12:57:50 -05:00
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");
2016-11-23 12:57:50 -05:00
});
QUnit.test("renders set HTML", async (assert) => {
2016-11-23 12:57:50 -05:00
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"
);
2016-11-23 12:57:50 -05:00
});
QUnit.test("renders preloaded HTML", async (assert) => {
2016-11-23 12:57:50 -05:00
PreloadStore.store("customHTML", {
top: "<span class='cookie'>monster</span>",
});
await visit("/static/faq");
assert.equal(find("span.cookie").text(), "monster", "it inserted the markup");
2017-06-14 13:57:58 -04:00
});