This is where they should be as far as ember is concerned. Note this is a huge commit and we should be really careful everything continues to work properly.
41 lines
986 B
JavaScript
41 lines
986 B
JavaScript
import {
|
|
moduleForWidget,
|
|
widgetTest,
|
|
} from "discourse/tests/helpers/widget-test";
|
|
import TopicStatusIcons from "discourse/helpers/topic-status-icons";
|
|
|
|
moduleForWidget("topic-status");
|
|
|
|
widgetTest("basics", {
|
|
template: '{{mount-widget widget="topic-status" args=args}}',
|
|
beforeEach(store) {
|
|
this.set("args", {
|
|
topic: store.createRecord("topic", { closed: true }),
|
|
disableActions: true,
|
|
});
|
|
},
|
|
test(assert) {
|
|
assert.ok(find(".topic-status .d-icon-lock").length);
|
|
},
|
|
});
|
|
|
|
widgetTest("extendability", {
|
|
template: '{{mount-widget widget="topic-status" args=args}}',
|
|
beforeEach(store) {
|
|
TopicStatusIcons.addObject([
|
|
"has_accepted_answer",
|
|
"far-check-square",
|
|
"solved",
|
|
]);
|
|
this.set("args", {
|
|
topic: store.createRecord("topic", {
|
|
has_accepted_answer: true,
|
|
}),
|
|
disableActions: true,
|
|
});
|
|
},
|
|
test(assert) {
|
|
assert.ok(find(".topic-status .d-icon-far-check-square").length);
|
|
},
|
|
});
|