Bump prettier to 1.19.1 and lock dependency (#8350)

This commit is contained in:
Martin Brennan
2019-11-16 01:07:45 +10:00
committed by Penar Musaraj
parent 16cdf94001
commit abf215a0e4
8 changed files with 42 additions and 14 deletions

View File

@ -14,7 +14,10 @@ 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]);
},