From 676cda96f77245c35e24dd7e96ea238baf0bfd36 Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Thu, 2 Nov 2023 12:00:55 -0400 Subject: [PATCH] Formatting --- src/layouts/confirmation/confirmation.spec.js | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/layouts/confirmation/confirmation.spec.js b/src/layouts/confirmation/confirmation.spec.js index d5e8bcc85..e0e970abd 100644 --- a/src/layouts/confirmation/confirmation.spec.js +++ b/src/layouts/confirmation/confirmation.spec.js @@ -174,7 +174,8 @@ describe("computed properties...", () => { }); test("ScheduleTimeFormatted should return mobile time in expected format.", () => { //Arrange - store.getters.submittedOrder.serviceLocation.appointmentType = AppointmentTypeStrings.MOBILE; + store.getters.submittedOrder.serviceLocation.appointmentType = + AppointmentTypeStrings.MOBILE; store.getters.submittedOrder.schedule.startTime = "09:00"; store.getters.submittedOrder.schedule.endTime = "11:00"; const { wrapper } = setupMocks({}); @@ -187,7 +188,8 @@ describe("computed properties...", () => { }); test("ScheduleTimeFormatted should return DROP_OFF time in expected format.", () => { //Arrange - store.getters.submittedOrder.serviceLocation.appointmentType = AppointmentTypeStrings.DROP_OFF; + store.getters.submittedOrder.serviceLocation.appointmentType = + AppointmentTypeStrings.DROP_OFF; store.getters.submittedOrder.schedule.startTime = "09:00"; store.getters.submittedOrder.schedule.endTime = "11:00"; const { wrapper } = setupMocks({}); @@ -200,7 +202,8 @@ describe("computed properties...", () => { }); test("ScheduleTimeFormatted should return Inshop time in expected format.", () => { //Arrange - store.getters.submittedOrder.serviceLocation.appointmentType = AppointmentTypeStrings.IN_SHOP; + store.getters.submittedOrder.serviceLocation.appointmentType = + AppointmentTypeStrings.IN_SHOP; store.getters.submittedOrder.schedule.startTime = "09:00"; store.getters.submittedOrder.schedule.endTime = "11:00"; const { wrapper } = setupMocks({}); @@ -213,7 +216,8 @@ describe("computed properties...", () => { }); test("AppointmentWordingText should return mobile text in expected format.", () => { //Arrange - store.getters.submittedOrder.serviceLocation.appointmentType = AppointmentTypeStrings.MOBILE; + store.getters.submittedOrder.serviceLocation.appointmentType = + AppointmentTypeStrings.MOBILE; const { wrapper } = setupMocks({}); // Act @@ -224,7 +228,8 @@ describe("computed properties...", () => { }); test("AppointmentWordingText should return DROP_OFF text in expected format.", () => { //Arrange - store.getters.submittedOrder.serviceLocation.appointmentType = AppointmentTypeStrings.DROP_OFF; + store.getters.submittedOrder.serviceLocation.appointmentType = + AppointmentTypeStrings.DROP_OFF; const { wrapper } = setupMocks({}); @@ -236,7 +241,8 @@ describe("computed properties...", () => { }); test("AppointmentWordingText should return IN_SHOP text in expected format.", () => { //Arrange - store.getters.submittedOrder.serviceLocation.appointmentType = AppointmentTypeStrings.IN_SHOP; + store.getters.submittedOrder.serviceLocation.appointmentType = + AppointmentTypeStrings.IN_SHOP; const { wrapper } = setupMocks({});