discourse/test/javascripts/acceptance/plugin-outlet-single-templa...

22 lines
698 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
const CONNECTOR = 'javascripts/single-test/connectors/user-profile-primary/hello';
acceptance("Plugin Outlet - Single Template", {
2017-06-14 13:57:58 -04:00
beforeEach() {
Ember.TEMPLATES[CONNECTOR] = Ember.HTMLBars.compile(
`<span class='hello-username'>{{model.username}}</span>`
);
},
2017-06-14 13:57:58 -04:00
afterEach() {
delete Ember.TEMPLATES[CONNECTOR];
}
});
2017-06-14 13:57:58 -04:00
QUnit.test("Renders a template into the outlet", assert => {
2017-03-28 14:27:54 -04:00
visit("/u/eviltrout");
andThen(() => {
assert.ok(find('.user-profile-primary-outlet.hello').length === 1, 'it has class names');
assert.equal(find('.hello-username').text(), 'eviltrout', 'it renders into the outlet');
});
2017-06-14 13:57:58 -04:00
});