2019-03-13 21:08:27 +08:00
|
|
|
import { moduleForWidget, widgetTest } from "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) {
|
2020-04-25 11:01:25 +08:00
|
|
|
assert.ok(find(".topic-status .d-icon-discourse-comment-slash").length);
|
2019-03-13 21:08:27 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
widgetTest("extendability", {
|
|
|
|
template: '{{mount-widget widget="topic-status" args=args}}',
|
|
|
|
beforeEach(store) {
|
|
|
|
TopicStatusIcons.addObject([
|
|
|
|
"has_accepted_answer",
|
2019-07-16 23:13:44 +08:00
|
|
|
"far-check-square",
|
2019-03-13 21:08:27 +08:00
|
|
|
"solved"
|
|
|
|
]);
|
|
|
|
this.set("args", {
|
|
|
|
topic: store.createRecord("topic", {
|
|
|
|
has_accepted_answer: true
|
|
|
|
}),
|
|
|
|
disableActions: true
|
|
|
|
});
|
|
|
|
},
|
|
|
|
test(assert) {
|
2019-07-16 23:13:44 +08:00
|
|
|
assert.ok(find(".topic-status .d-icon-far-check-square").length);
|
2019-03-13 21:08:27 +08:00
|
|
|
}
|
|
|
|
});
|