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

53 lines
1.3 KiB
Plaintext
Raw Normal View History

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