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

30 lines
890 B
Plaintext
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 'preload-store';
acceptance("CustomHTML set");
2017-06-14 13:57:58 -04:00
QUnit.test("has no custom HTML in the top", assert => {
2016-11-23 12:57:50 -05:00
visit("/static/faq");
andThen(() => {
assert.ok(!exists('span.custom-html-test'), 'it has no markup');
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("renders set HTML", assert => {
2016-11-23 12:57:50 -05:00
setCustomHTML('top', '<span class="custom-html-test">HTML</span>');
visit("/static/faq");
andThen(() => {
assert.equal(find('span.custom-html-test').text(), 'HTML', 'it inserted the markup');
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("renders preloaded HTML", assert => {
2016-11-23 12:57:50 -05:00
PreloadStore.store('customHTML', {top: "<span class='cookie'>monster</span>"});
visit("/static/faq");
andThen(() => {
assert.equal(find('span.cookie').text(), 'monster', 'it inserted the markup');
});
2017-06-14 13:57:58 -04:00
});