Fix Prettier

This commit is contained in:
Penar Musaraj
2019-11-15 10:28:46 -05:00
parent abf215a0e4
commit 655e610357
6 changed files with 9 additions and 37 deletions

View File

@ -14,10 +14,7 @@ componentTest("with objects and values", {
template: "{{multi-select content=items values=values}}",
beforeEach() {
this.set("items", [
{ id: 1, name: "hello" },
{ id: 2, name: "world" }
]);
this.set("items", [{ id: 1, name: "hello" }, { id: 2, name: "world" }]);
this.set("values", [1, 2]);
},