This commit is contained in:
Kulbhushan Kaushik 2023-01-16 08:54:08 -05:00
parent 6ca30f13fa
commit 4216ad524e
2 changed files with 2 additions and 25 deletions

View file

@ -1,23 +0,0 @@
// Components
import welcomePage from "@/layouts/welcome-page/welcome-page.vue";
// Supporting files
import { shallowMount } from '@vue/test-utils';
import { settleAllPromises } from "@/helpers/layout-helper.js";
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
import baseMixin from "@/mixins/base-mixin.js";
import { getMountOptions } from "@/helpers/unit-test-helper.js";
import { nextTick } from "vue";
import { useMainStore } from "@/store";
import { applicationConfig } from "@/constants/application-config";
// Mock our module for promises.
jest.mock("@/helpers/layout-helper.js", () => ({
settleAllPromises: jest.fn(),
}));
// Mock fetchCmsContentForPage
jest.mock("@/helpers/cms-content-helper", () => ({
fetchCmsContentForPage: jest.fn(),
}));

View file

@ -91,7 +91,7 @@
inputId="phoneNumberField"
cmsWidgetName="PhoneNumberQuestion"
v-model="welcomePageModel.phoneNumber"
validationRules="phone-number-required"
validationRules="phone-number-required|phone-number-format"
isRequired
mask="###-###-####"
disableAutoFill />
@ -160,7 +160,7 @@
defineRule("phone-number-format",
regex(
/\A[0-9]{3}-[0-9]{3}-[0-9]{4}\z/,
/^(\([0-9]{3}\)|[0-9]{3}) *[-.]? *[0-9]{3} *[-.]? *[0-9]{4}$/,
errorMessages.PHONE_NUMBER_FORMAT
)
);