From 68cca959a79c29bb845fb8b925856303b2c7d28a Mon Sep 17 00:00:00 2001 From: CarlNation Date: Fri, 10 Feb 2023 16:20:34 -0500 Subject: [PATCH] CSR-1108 Prettier --- src/layouts/quote/quote.spec.js | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/layouts/quote/quote.spec.js b/src/layouts/quote/quote.spec.js index b233bc7e3..e5d4d54fb 100644 --- a/src/layouts/quote/quote.spec.js +++ b/src/layouts/quote/quote.spec.js @@ -7,7 +7,7 @@ import * as navigateToHeritage from "@/helpers/heritage-integration/navigation-h jest.mock("@/store", () => ({ commit: jest.fn(), - dispatch: jest.fn() + dispatch: jest.fn(), })); // Mock our module for promises. @@ -32,7 +32,6 @@ jest.mock( { virtual: true } ); - store.getters = { order: { accountNumber: applicationConfig.CASH_ACCOUNT_NUMBER, @@ -40,7 +39,7 @@ store.getters = { payment: { insuranceCoverage: {}, isInsurance: false, - } + }, }; afterEach(() => { @@ -52,7 +51,7 @@ afterEach(() => { payment: { insuranceCoverage: {}, isInsurance: false, - } + }, }; }); @@ -64,13 +63,13 @@ describe("quote.vue", () => { router: { navigateWithSaving: jest.fn(), }, - route: { quote } + route: { quote }, }, }); - + store.getters.payment = { insuranceCoverage: {}, - isInsurance : false + isInsurance: false, }; wrapper.vm.dispatchStoreAction = jest.fn(() => { @@ -93,13 +92,13 @@ describe("quote.vue", () => { router: { navigateWithSaving: jest.fn(), }, - route: { quote } + route: { quote }, }, }); - + store.getters.payment = { insuranceCoverage: {}, - isInsurance : true + isInsurance: true, }; wrapper.vm.dispatchStoreAction = jest.fn(() => { @@ -116,7 +115,6 @@ describe("quote.vue", () => { }); }); - function setupMocks({ customMountOptions }) { const mountOptions = getMountOptions({ ...customMountOptions,