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

31 lines
873 B
Plaintext
Raw Normal View History

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