2019-06-06 16:47:10 +08:00
|
|
|
|
import selectKit from "helpers/select-kit-helper";
|
2018-06-15 23:03:24 +08:00
|
|
|
|
import componentTest from "helpers/component-test";
|
|
|
|
|
import Topic from "discourse/models/topic";
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
|
|
|
|
const buildTopic = function() {
|
|
|
|
|
return Topic.create({
|
|
|
|
|
id: 1234,
|
2018-06-15 23:03:24 +08:00
|
|
|
|
title: "Qunit Test Topic"
|
2017-10-20 03:51:08 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
moduleForComponent("topic-footer-mobile-dropdown", {
|
2017-12-22 20:08:12 +08:00
|
|
|
|
integration: true,
|
|
|
|
|
beforeEach: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
|
this.set("subject", selectKit());
|
2017-12-22 20:08:12 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
componentTest("default", {
|
|
|
|
|
template: "{{topic-footer-mobile-dropdown topic=topic}}",
|
2017-10-20 03:51:08 +08:00
|
|
|
|
beforeEach() {
|
2018-06-15 23:03:24 +08:00
|
|
|
|
this.set("topic", buildTopic());
|
2017-10-20 03:51:08 +08:00
|
|
|
|
},
|
|
|
|
|
|
2018-07-25 02:12:09 +08:00
|
|
|
|
async test(assert) {
|
2019-05-27 16:15:39 +08:00
|
|
|
|
await this.subject.expand();
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
2019-05-27 16:42:53 +08:00
|
|
|
|
assert.equal(this.subject.header().title(), "Topic Controls");
|
|
|
|
|
assert.equal(this.subject.header().value(), null);
|
2018-07-25 02:12:09 +08:00
|
|
|
|
assert.notOk(
|
2019-05-27 16:42:53 +08:00
|
|
|
|
this.subject.selectedRow().exists(),
|
2018-07-25 02:12:09 +08:00
|
|
|
|
"it doesn’t preselect first row"
|
|
|
|
|
);
|
2017-10-20 03:51:08 +08:00
|
|
|
|
}
|
|
|
|
|
});
|