mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 11:11:13 +08:00
Rename all test files from JS -> ES6
This commit is contained in:
18
test/javascripts/acceptance/custom-html-template-test.js
Normal file
18
test/javascripts/acceptance/custom-html-template-test.js
Normal file
@ -0,0 +1,18 @@
|
||||
import { acceptance } from "helpers/qunit-helpers";
|
||||
|
||||
acceptance("CustomHTML template", {
|
||||
beforeEach() {
|
||||
Ember.TEMPLATES["top"] = Ember.HTMLBars.compile(
|
||||
`<span class='top-span'>TOP</span>`
|
||||
);
|
||||
},
|
||||
|
||||
afterEach() {
|
||||
delete Ember.TEMPLATES["top"];
|
||||
}
|
||||
});
|
||||
|
||||
QUnit.test("renders custom template", async assert => {
|
||||
await visit("/static/faq");
|
||||
assert.equal(find("span.top-span").text(), "TOP", "it inserted the template");
|
||||
});
|
Reference in New Issue
Block a user