mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 09:04:00 +08:00
24 lines
682 B
JavaScript
24 lines
682 B
JavaScript
import componentTest from 'helpers/component-test';
|
|
|
|
moduleForComponent('dropdown-select-box', { integration: true });
|
|
|
|
componentTest('the header has a title', {
|
|
template: '{{dropdown-select-box content=content value=value}}',
|
|
|
|
beforeEach() {
|
|
this.set("value", 1);
|
|
this.set("content", [{ id: 1, text: "apple" }, { id: 2, text: "peach" }]);
|
|
},
|
|
|
|
test(assert) {
|
|
andThen(() => {
|
|
assert.equal(find(".select-box-header .btn").attr("title"), "apple", "it has the correct title");
|
|
});
|
|
|
|
andThen(() => {
|
|
this.set("value", 2);
|
|
assert.equal(find(".select-box-header .btn").attr("title"), "peach", "it correctly changes the title");
|
|
});
|
|
}
|
|
});
|