mirror of
https://github.com/discourse/discourse.git
synced 2026-08-11 05:25:16 -05:00
DEV: introduces prettier for es6 files
This commit is contained in:
@@ -1,30 +1,40 @@
|
||||
import { acceptance } from "helpers/qunit-helpers";
|
||||
import { setCustomHTML } from 'discourse/helpers/custom-html';
|
||||
import PreloadStore from 'preload-store';
|
||||
import { setCustomHTML } from "discourse/helpers/custom-html";
|
||||
import PreloadStore from "preload-store";
|
||||
|
||||
acceptance("CustomHTML set");
|
||||
|
||||
QUnit.test("has no custom HTML in the top", assert => {
|
||||
visit("/static/faq");
|
||||
andThen(() => {
|
||||
assert.ok(!exists('span.custom-html-test'), 'it has no markup');
|
||||
assert.ok(!exists("span.custom-html-test"), "it has no markup");
|
||||
});
|
||||
});
|
||||
|
||||
QUnit.test("renders set HTML", assert => {
|
||||
setCustomHTML('top', '<span class="custom-html-test">HTML</span>');
|
||||
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');
|
||||
assert.equal(
|
||||
find("span.custom-html-test").text(),
|
||||
"HTML",
|
||||
"it inserted the markup"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
QUnit.test("renders preloaded HTML", assert => {
|
||||
PreloadStore.store('customHTML', {top: "<span class='cookie'>monster</span>"});
|
||||
PreloadStore.store("customHTML", {
|
||||
top: "<span class='cookie'>monster</span>"
|
||||
});
|
||||
|
||||
visit("/static/faq");
|
||||
andThen(() => {
|
||||
assert.equal(find('span.cookie').text(), 'monster', 'it inserted the markup');
|
||||
assert.equal(
|
||||
find("span.cookie").text(),
|
||||
"monster",
|
||||
"it inserted the markup"
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user