discourse/test/javascripts/acceptance/raw-plugin-outlet-test.js.es6

28 lines
674 B
Plaintext
Raw Normal View History

2017-01-05 10:38:43 -06:00
import { acceptance } from "helpers/qunit-helpers";
2018-06-15 10:03:24 -05:00
const CONNECTOR =
"javascripts/raw-test/connectors/topic-list-before-status/lala";
2017-01-05 10:38:43 -06:00
acceptance("Raw Plugin Outlet", {
2017-06-14 12:57:58 -05:00
beforeEach() {
2017-01-05 10:38:43 -06:00
Discourse.RAW_TEMPLATES[CONNECTOR] = Handlebars.compile(
`<span class='topic-lala'>{{context.topic.id}}</span>`
);
},
2017-06-14 12:57:58 -05:00
afterEach() {
2017-01-05 10:38:43 -06:00
delete Discourse.RAW_TEMPLATES[CONNECTOR];
}
});
2017-06-14 12:57:58 -05:00
QUnit.test("Renders the raw plugin outlet", assert => {
2017-01-05 10:38:43 -06:00
visit("/");
andThen(() => {
2018-06-15 10:03:24 -05:00
assert.ok(find(".topic-lala").length > 0, "it renders the outlet");
assert.equal(
find(".topic-lala:eq(0)").text(),
"11557",
"it has the topic id"
);
2017-01-05 10:38:43 -06:00
});
2018-06-15 10:03:24 -05:00
});