CSR-803 ish: prettier formatting updates
This commit is contained in:
parent
55c67333bc
commit
a93c1c6740
2 changed files with 8 additions and 9 deletions
|
|
@ -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",
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
Loading…
Reference in a new issue