mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 02:23:40 +08:00
34 lines
708 B
JavaScript
34 lines
708 B
JavaScript
import componentTest from "helpers/component-test";
|
|
import { testSelectKitModule } from "helpers/select-kit-helper";
|
|
|
|
testSelectKitModule("user-chooser");
|
|
|
|
function template() {
|
|
return `{{user-chooser value=value}}`;
|
|
}
|
|
|
|
componentTest("displays usernames", {
|
|
template: template(),
|
|
|
|
beforeEach() {
|
|
this.set("value", ["bob", "martin"]);
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.equal(this.subject.header().name(), "bob,martin");
|
|
}
|
|
});
|
|
|
|
componentTest("can remove a username", {
|
|
template: template(),
|
|
|
|
beforeEach() {
|
|
this.set("value", ["bob", "martin"]);
|
|
},
|
|
|
|
async test(assert) {
|
|
await this.subject.deselectItem("bob");
|
|
assert.equal(this.subject.header().name(), "martin");
|
|
}
|
|
});
|