mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 08:51:05 +08:00
Fix Prettier
This commit is contained in:
@ -11,10 +11,7 @@ moduleForComponent("combo-box", {
|
||||
componentTest("default", {
|
||||
template: "{{combo-box content=items}}",
|
||||
beforeEach() {
|
||||
this.set("items", [
|
||||
{ id: 1, name: "hello" },
|
||||
{ id: 2, name: "world" }
|
||||
]);
|
||||
this.set("items", [{ id: 1, name: "hello" }, { id: 2, name: "world" }]);
|
||||
},
|
||||
|
||||
async test(assert) {
|
||||
@ -46,10 +43,7 @@ componentTest("with valueAttribute", {
|
||||
componentTest("with nameProperty", {
|
||||
template: '{{combo-box content=items nameProperty="text"}}',
|
||||
beforeEach() {
|
||||
this.set("items", [
|
||||
{ id: 0, text: "hello" },
|
||||
{ id: 1, text: "world" }
|
||||
]);
|
||||
this.set("items", [{ id: 0, text: "hello" }, { id: 1, text: "world" }]);
|
||||
},
|
||||
|
||||
async test(assert) {
|
||||
|
Reference in New Issue
Block a user