diff --git a/src/layouts/service-location/service-location.spec.js b/src/layouts/service-location/service-location.spec.js index 2b4e0d221..69f49fe9d 100644 --- a/src/layouts/service-location/service-location.spec.js +++ b/src/layouts/service-location/service-location.spec.js @@ -81,6 +81,16 @@ jest.mock( }) ); +jest.mock( + "@/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue", + () => ({ + isMobileAddressComplete: jest.fn(() => { + return true; + }), + openModal: jest.fn(), + }) +); + jest.spyOn(baseMixin.methods, "getZipCodeData").mockImplementation((serviceZipCode) => { return new Promise((resolve) => { let mockContainsMilitaryBase = false;