From 47fa89e2e10ac3d9f70f55e7cf6dbbf00de8bbe4 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Wed, 29 May 2024 08:35:52 -0400 Subject: [PATCH] SSR-1167 SSR-1167 move insuranceCoverage to own object --- src/store/store.spec.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 535053e57..fb1c73f98 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -5,6 +5,7 @@ import { storeActions } from "@/constants/store-actions"; import { experimentTriggers } from "@/constants/experiments"; import { fmgPageValues } from "@/router/router-constants/fmgPage-values"; import { AppointmentTypeStrings } from "@/constants/schedule-constants"; +import { coverageStatus } from "../constants/insurance"; // Mock global method globalMethods.callHttpClient = jest.fn(); @@ -234,12 +235,13 @@ describe("Mutations", () => { glassParts: null, }, payment: { - insuranceCoverage: { - isVerified: false, - }, isInsurance: false, parentAccountNumber: "123456789", }, + insuranceCoverage: { + isVerified: false, + coverageStatus: "Pending", + }, parts: [], insuranceInfo: {}, serviceLocation: {},