discourse/test/javascripts/components/categories-admin-dropdown-t...

20 lines
514 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import componentTest from "helpers/component-test";
moduleForComponent("categories-admin-dropdown", { integration: true });
2017-10-19 15:51:08 -04:00
2018-06-15 11:03:24 -04:00
componentTest("default", {
template: "{{categories-admin-dropdown}}",
2017-10-19 15:51:08 -04:00
test(assert) {
const subject = selectKit();
2017-10-19 15:51:08 -04: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 15:51:08 -04:00
subject.expand();
2017-10-19 15:51:08 -04:00
andThen(() => {
assert.equal(subject.rowByValue("create").name(), "New Category");
2017-10-19 15:51:08 -04:00
});
}
});