CSR-803 ish: prettier formatting updates

This commit is contained in:
Adam Caouette 2022-12-21 11:24:49 -05:00
parent 55c67333bc
commit a93c1c6740
2 changed files with 8 additions and 9 deletions

View file

@ -9,8 +9,8 @@ describe("loader.vue", () => {
}); });
// Assert // Assert
expect(wrapper.find('div').exists()).toBeTruthy(); expect(wrapper.find("div").exists()).toBeTruthy();
expect(wrapper.find('.loader').exists()).toBeTruthy(); expect(wrapper.find(".loader").exists()).toBeTruthy();
}); });
test("if it correctly passed props", () => { test("if it correctly passed props", () => {
@ -18,7 +18,7 @@ describe("loader.vue", () => {
const wrapper = shallowMount(loader, { const wrapper = shallowMount(loader, {
props: { props: {
loaderColor: "blue", loaderColor: "blue",
loaderPosition: "left" loaderPosition: "left",
}, },
}); });
@ -28,5 +28,4 @@ describe("loader.vue", () => {
loaderPosition: "left", loaderPosition: "left",
}); });
}); });
}); });