2018-06-15 17:03:24 +02:00
|
|
|
import componentTest from "helpers/component-test";
|
|
|
|
|
moduleForComponent("categories-admin-dropdown", { integration: true });
|
2017-10-19 12:51:08 -07:00
|
|
|
|
2018-06-15 17:03:24 +02:00
|
|
|
componentTest("default", {
|
|
|
|
|
template: "{{categories-admin-dropdown}}",
|
2017-10-19 12:51:08 -07:00
|
|
|
|
|
|
|
|
test(assert) {
|
2017-12-22 13:08:12 +01:00
|
|
|
const subject = selectKit();
|
2017-10-19 12:51:08 -07:00
|
|
|
|
2017-12-22 13:08:12 +01:00
|
|
|
assert.equal(subject.el().find(".d-icon-bars").length, 1);
|
|
|
|
|
assert.equal(subject.el().find(".d-icon-caret-down").length, 1);
|
2017-10-19 12:51:08 -07:00
|
|
|
|
2017-12-22 13:08:12 +01:00
|
|
|
subject.expand();
|
2017-10-19 12:51:08 -07:00
|
|
|
|
|
|
|
|
andThen(() => {
|
2017-12-22 13:08:12 +01:00
|
|
|
assert.equal(subject.rowByValue("create").name(), "New Category");
|
2017-10-19 12:51:08 -07:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|