DEV: introduces prettier for es6 files

This commit is contained in:
Joffrey JAFFEUX
2018-06-15 17:03:24 +02:00
committed by GitHub
parent c7ee70941e
commit 03a7d532cf
1162 changed files with 60667 additions and 29659 deletions

View File

@ -1,44 +1,66 @@
import componentTest from 'helpers/component-test';
import Topic from 'discourse/models/topic';
import componentTest from "helpers/component-test";
import Topic from "discourse/models/topic";
const buildTopic = function() {
return Topic.create({
id: 1234,
title: 'Qunit Test Topic'
title: "Qunit Test Topic"
});
};
moduleForComponent('topic-footer-mobile-dropdown', {
moduleForComponent("topic-footer-mobile-dropdown", {
integration: true,
beforeEach: function() {
this.set('subject', selectKit());
this.set("subject", selectKit());
}
});
componentTest('default', {
template: '{{topic-footer-mobile-dropdown topic=topic}}',
componentTest("default", {
template: "{{topic-footer-mobile-dropdown topic=topic}}",
beforeEach() {
this.set('topic', buildTopic());
this.set("topic", buildTopic());
},
test(assert) {
this.get('subject').expand();
this.get("subject").expand();
andThen(() => {
assert.equal(this.get('subject').header().title(), 'Topic Controls');
assert.equal(this.get('subject').header().value(), null);
assert.equal(this.get('subject').rowByIndex(0).name(), 'Bookmark');
assert.equal(this.get('subject').rowByIndex(1).name(), 'Share');
assert.equal(
this.get("subject")
.header()
.title(),
"Topic Controls"
);
assert.equal(
this.get("subject")
.header()
.value(),
null
);
assert.equal(
this.get("subject")
.rowByIndex(0)
.name(),
"Bookmark"
);
assert.equal(
this.get("subject")
.rowByIndex(1)
.name(),
"Share"
);
assert.notOk(
this.get('subject').selectedRow().exists(),
'it doesn’t preselect first row'
this.get("subject")
.selectedRow()
.exists(),
"it doesn’t preselect first row"
);
});
this.get('subject').selectRowByValue('share');
this.get("subject").selectRowByValue("share");
andThen(() => {
assert.equal(this.get('value'), null, 'it resets the value');
assert.equal(this.get("value"), null, "it resets the value");
});
}
});