21 lines
533 B
JavaScript
21 lines
533 B
JavaScript
import { visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("CustomHTML template", {
|
|
beforeEach() {
|
|
Ember.TEMPLATES["top"] = Ember.HTMLBars.compile(
|
|
`<span class='top-span'>TOP</span>`
|
|
);
|
|
},
|
|
|
|
afterEach() {
|
|
delete Ember.TEMPLATES["top"];
|
|
},
|
|
});
|
|
|
|
test("renders custom template", async (assert) => {
|
|
await visit("/static/faq");
|
|
assert.equal(find("span.top-span").text(), "TOP", "it inserted the template");
|
|
});
|