In newer Embers jQuery is removed. There is a `find` but it only returns one element and not a jQuery selector. This patch migrates our code to a new helper `queryAll` which allows us to remove the global.
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
|
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(queryAll(".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(queryAll(".topic-status .d-icon-far-check-square").length);
|
|
},
|
|
});
|