mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
[WIP] select-box-kit refactoring
This commit is contained in:
parent
a9f718fe57
commit
ae1743c61f
157 changed files with 3262 additions and 2404 deletions
|
@ -0,0 +1,28 @@
|
|||
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) {
|
||||
expandSelectBox();
|
||||
|
||||
andThen(() => {
|
||||
assert.equal(selectBox().header.name(), "Topic Controls");
|
||||
assert.equal(selectBox().rowByIndex(0).name(), "Bookmark");
|
||||
assert.equal(selectBox().rowByIndex(1).name(), "Share");
|
||||
});
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue