discourse/test/javascripts/components/topic-footer-mobile-dropdow...

36 lines
930 B
Plaintext
Raw Normal View History

2017-10-19 15:51:08 -04: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-09 13:57:53 -05:00
expandSelectBoxKit();
2017-10-19 15:51:08 -04:00
andThen(() => {
assert.equal(selectBox().header.name(), "Topic Controls");
assert.equal(selectBox().rowByIndex(0).name(), "Bookmark");
assert.equal(selectBox().rowByIndex(1).name(), "Share");
2017-10-20 16:40:56 -04:00
assert.equal(selectBox().selectedRow.el.length, 0, "it doesnt preselect first row");
});
2017-11-09 13:57:53 -05:00
selectBoxKitSelectRow("share");
2017-10-20 16:40:56 -04:00
andThen(() => {
assert.equal(this.get("value"), null, "it resets the value");
2017-10-19 15:51:08 -04:00
});
}
});