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

41 lines
947 B
Plaintext
Raw Normal View History

2016-11-24 01:57:50 +08:00
import { acceptance } from "helpers/qunit-helpers";
2018-06-15 23:03:24 +08:00
import { setCustomHTML } from "discourse/helpers/custom-html";
import PreloadStore from "preload-store";
2016-11-24 01:57:50 +08:00
acceptance("CustomHTML set");
2017-06-15 01:57:58 +08:00
QUnit.test("has no custom HTML in the top", assert => {
2016-11-24 01:57:50 +08:00
visit("/static/faq");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(!exists("span.custom-html-test"), "it has no markup");
2016-11-24 01:57:50 +08:00
});
});
2017-06-15 01:57:58 +08:00
QUnit.test("renders set HTML", assert => {
2018-06-15 23:03:24 +08:00
setCustomHTML("top", '<span class="custom-html-test">HTML</span>');
2016-11-24 01:57:50 +08:00
visit("/static/faq");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.equal(
find("span.custom-html-test").text(),
"HTML",
"it inserted the markup"
);
2016-11-24 01:57:50 +08:00
});
});
2017-06-15 01:57:58 +08:00
QUnit.test("renders preloaded HTML", assert => {
2018-06-15 23:03:24 +08:00
PreloadStore.store("customHTML", {
top: "<span class='cookie'>monster</span>"
});
2016-11-24 01:57:50 +08:00
visit("/static/faq");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.equal(
find("span.cookie").text(),
"monster",
"it inserted the markup"
);
2016-11-24 01:57:50 +08:00
});
2018-06-15 23:03:24 +08:00
});