discourse/test/javascripts/widgets/button-test.js.es6

53 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-06-15 23:03:24 +08:00
import { moduleForWidget, widgetTest } from "helpers/widget-test";
2017-08-02 03:33:31 +08:00
2018-06-15 23:03:24 +08:00
moduleForWidget("button");
2017-08-02 03:33:31 +08:00
2018-06-15 23:03:24 +08:00
widgetTest("icon only button", {
2017-08-02 03:33:31 +08:00
template: '{{mount-widget widget="button" args=args}}',
beforeEach() {
2019-01-23 03:42:00 +08:00
this.set("args", { icon: "far-smile" });
2017-08-02 03:33:31 +08:00
},
test(assert) {
2018-06-15 23:03:24 +08:00
assert.ok(
find("button.btn.btn-icon.no-text").length,
2018-06-15 23:03:24 +08:00
"it has all the classes"
);
assert.ok(
find("button .d-icon.d-icon-far-smile").length,
2018-06-15 23:03:24 +08:00
"it has the icon"
);
2017-08-02 03:33:31 +08:00
}
});
2018-06-15 23:03:24 +08:00
widgetTest("icon and text button", {
2017-08-02 03:33:31 +08:00
template: '{{mount-widget widget="button" args=args}}',
beforeEach() {
2018-06-15 23:03:24 +08:00
this.set("args", { icon: "plus", label: "topic.create" });
2017-08-02 03:33:31 +08:00
},
test(assert) {
2018-06-15 23:03:24 +08:00
assert.ok(
find("button.btn.btn-icon-text").length,
2018-06-15 23:03:24 +08:00
"it has all the classes"
);
assert.ok(find("button .d-icon.d-icon-plus").length, "it has the icon");
assert.ok(find("button span.d-button-label").length, "it has the label");
2017-08-02 03:33:31 +08:00
}
});
2018-06-15 23:03:24 +08:00
widgetTest("text only button", {
2017-08-02 03:33:31 +08:00
template: '{{mount-widget widget="button" args=args}}',
beforeEach() {
2018-06-15 23:03:24 +08:00
this.set("args", { label: "topic.create" });
2017-08-02 03:33:31 +08:00
},
test(assert) {
assert.ok(find("button.btn.btn-text").length, "it has all the classes");
assert.ok(find("button span.d-button-label").length, "it has the label");
2017-08-02 03:33:31 +08:00
}
});