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

19 lines
447 B
Plaintext
Raw Normal View History

2016-11-24 01:57:50 +08:00
import { acceptance } from "helpers/qunit-helpers";
acceptance("CustomHTML template", {
2017-06-15 01:57:58 +08:00
beforeEach() {
2016-11-24 01:57:50 +08:00
Ember.TEMPLATES['top'] = Ember.HTMLBars.compile(`<span class='top-span'>TOP</span>`);
},
2017-06-15 01:57:58 +08:00
afterEach() {
2016-11-24 01:57:50 +08:00
delete Ember.TEMPLATES['top'];
}
});
2017-06-15 01:57:58 +08:00
QUnit.test("renders custom template", assert => {
2016-11-24 01:57:50 +08:00
visit("/static/faq");
andThen(() => {
assert.equal(find('span.top-span').text(), 'TOP', 'it inserted the template');
});
});