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({});