From b9a895a43beacbf844e117ef5523ba4b47cba717 Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Mon, 22 May 2023 16:09:19 -0400 Subject: [PATCH] remove unneeded unit test --- .../service-location/service-location.spec.js | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/src/layouts/service-location/service-location.spec.js b/src/layouts/service-location/service-location.spec.js index 6d1ba5e2..1d424130 100644 --- a/src/layouts/service-location/service-location.spec.js +++ b/src/layouts/service-location/service-location.spec.js @@ -113,28 +113,6 @@ describe("updating service zip", () => { expect(wrapper.vm.serviceZipCodeQuestion).toStrictEqual(newServiceZipCodeQuestion); }); - test("resets appointment type selection when service zip code is updated by service zip modal", () => { - // Arrange - const { wrapper } = setupMocks({}); - - const serviceZipCodeComponent = wrapper.findComponent({ - ref: "serviceZipCodeQuestion", - }); - - const newServiceZipCodeQuestion = { - zipCode: "61606", - state: "IL", - }; - - wrapper.vm.selectedAppointmentType = "Inshop"; - - // Act - serviceZipCodeComponent.vm.$emit("update:modelValue", newServiceZipCodeQuestion); - - // Assert - expect(wrapper.vm.selectedAppointmentType).toStrictEqual(null); - }); - test("displays military zip message when zip is updated", () => { // Arrange const { wrapper } = setupMocks({});