2017-10-20 03:51:08 +08:00
|
|
|
|
import componentTest from 'helpers/component-test';
|
|
|
|
|
import Topic from 'discourse/models/topic';
|
|
|
|
|
|
|
|
|
|
const buildTopic = function() {
|
|
|
|
|
return Topic.create({
|
|
|
|
|
id: 1234,
|
|
|
|
|
title: 'Qunit Test Topic'
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
moduleForComponent('topic-footer-mobile-dropdown', {integration: true});
|
|
|
|
|
|
|
|
|
|
componentTest('default', {
|
|
|
|
|
template: '{{topic-footer-mobile-dropdown topic=topic}}',
|
|
|
|
|
beforeEach() {
|
|
|
|
|
this.set("topic", buildTopic());
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
test(assert) {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
expandSelectKit();
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
|
|
|
|
andThen(() => {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
assert.equal(selectKit().header.name(), "Topic Controls");
|
|
|
|
|
assert.equal(selectKit().rowByIndex(0).name(), "Bookmark");
|
|
|
|
|
assert.equal(selectKit().rowByIndex(1).name(), "Share");
|
|
|
|
|
assert.equal(selectKit().selectedRow.el.length, 0, "it doesn’t preselect first row");
|
2017-10-21 04:40:56 +08:00
|
|
|
|
});
|
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
|
selectKitSelectRow("share");
|
2017-10-21 04:40:56 +08:00
|
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
|
assert.equal(this.get("value"), null, "it resets the value");
|
2017-10-20 03:51:08 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|