Merge branch 'develop' into defect/CSR-1494
This commit is contained in:
commit
9a88b08f02
19 changed files with 67 additions and 60 deletions
|
|
@ -1,9 +1,6 @@
|
||||||
import { shallowMount, mount } from "@vue/test-utils";
|
import { shallowMount, mount } from "@vue/test-utils";
|
||||||
import buttonQuestion from "./button-question";
|
import buttonQuestion from "./button-question";
|
||||||
import { getMountOptions } from "@/helpers/unit-test-helper.js";
|
import { getMountOptions } from "@/helpers/unit-test-helper.js";
|
||||||
import crypto from "crypto";
|
|
||||||
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
describe("buttonQuestion.vue", () => {
|
describe("buttonQuestion.vue", () => {
|
||||||
it("Should show overflow classes on fieldset if isOverflowScrollable is true", () => {
|
it("Should show overflow classes on fieldset if isOverflowScrollable is true", () => {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { shallowMount } from "@vue/test-utils";
|
import { shallowMount } from "@vue/test-utils";
|
||||||
import dropdownQuestion from "./dropdown-question";
|
import dropdownQuestion from "./dropdown-question";
|
||||||
import crypto from "crypto";
|
|
||||||
|
|
||||||
// Mock CMS content
|
// Mock CMS content
|
||||||
const questionText = "Question Text";
|
const questionText = "Question Text";
|
||||||
|
|
@ -12,8 +11,6 @@ const mockMixin = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
// TODO: Remove the following from dropdown-question.vue -> :class="(errors && errors.length) || hasError ? 'has-error' : ''"
|
// TODO: Remove the following from dropdown-question.vue -> :class="(errors && errors.length) || hasError ? 'has-error' : ''"
|
||||||
// It is not being used.
|
// It is not being used.
|
||||||
describe("dropdownQuestion.vue", () => {
|
describe("dropdownQuestion.vue", () => {
|
||||||
|
|
|
||||||
|
|
@ -30,28 +30,26 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { useField } from "vee-validate";
|
import { useField } from "vee-validate";
|
||||||
|
import { v4 as uuidv4 } from "uuid";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "dropdown-question",
|
name: "dropdown-question",
|
||||||
props: {
|
props: {
|
||||||
modelValue: String,
|
customDropdownId: String,
|
||||||
customInputId: String,
|
|
||||||
options: {
|
options: {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
modelValue: String,
|
||||||
isDisabled: Boolean,
|
isDisabled: Boolean,
|
||||||
isRequired: Boolean,
|
isRequired: Boolean,
|
||||||
validationRules: String,
|
validationRules: String,
|
||||||
cmsWidgetName: String,
|
cmsWidgetName: String,
|
||||||
hasError: Boolean,
|
hasError: Boolean,
|
||||||
placeHolderText: String,
|
|
||||||
customDropdownId: String,
|
|
||||||
},
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
const dropdownId = !props.customDropdownId
|
const uuid = uuidv4();
|
||||||
? `dropdown-${crypto.randomUUID()}`
|
const dropdownId = !props.customDropdownId ? `dropdown-${uuid}` : props.customDropdownId;
|
||||||
: props.customDropdownId;
|
|
||||||
|
|
||||||
const propsClone = Object.assign({}, props);
|
const propsClone = Object.assign({}, props);
|
||||||
const modelValue = propsClone.modelValue;
|
const modelValue = propsClone.modelValue;
|
||||||
|
|
|
||||||
|
|
@ -7,15 +7,13 @@ const mockMeta = (returnValue) => jest.fn(async () => Promise.resolve(returnValu
|
||||||
|
|
||||||
import { shallowMount } from "@vue/test-utils";
|
import { shallowMount } from "@vue/test-utils";
|
||||||
import modal from "./modal";
|
import modal from "./modal";
|
||||||
import crypto from "crypto";
|
|
||||||
import { useForm } from "vee-validate";
|
import { useForm } from "vee-validate";
|
||||||
import { Modal } from "bootstrap";
|
import { Modal } from "bootstrap";
|
||||||
|
|
||||||
const footerButtonText = "Sample footer text here.";
|
const footerButtonText = "Sample footer text here.";
|
||||||
const headerText = "Sample header text here.";
|
const headerText = "Sample header text here.";
|
||||||
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
describe("modal.vue", () => {
|
describe("modal.vue", () => {
|
||||||
it("Should display modal header text when headerText is defined", async () => {
|
it("Should display modal header text when headerText is defined", async () => {
|
||||||
// Arrange / Act
|
// Arrange / Act
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@
|
||||||
import modalButtonMain from "@/digital-components/modal/ux-components/modal-button-main/modal-button-main";
|
import modalButtonMain from "@/digital-components/modal/ux-components/modal-button-main/modal-button-main";
|
||||||
import { Modal } from "bootstrap";
|
import { Modal } from "bootstrap";
|
||||||
import { useForm } from "vee-validate";
|
import { useForm } from "vee-validate";
|
||||||
|
import { v4 as uuidv4 } from "uuid";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "modal",
|
name: "modal",
|
||||||
|
|
@ -58,7 +59,9 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
const modalId = `modal-${crypto.randomUUID()}`;
|
const uuid = uuidv4();
|
||||||
|
const modalId = `modal-${uuid}`;
|
||||||
|
|
||||||
const { meta, validate, resetForm } = useForm();
|
const { meta, validate, resetForm } = useForm();
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { shallowMount } from "@vue/test-utils";
|
import { shallowMount } from "@vue/test-utils";
|
||||||
import textboxQuestion from "./textbox-question";
|
import textboxQuestion from "./textbox-question";
|
||||||
import crypto from "crypto";
|
|
||||||
|
|
||||||
// Mock CMS content
|
// Mock CMS content
|
||||||
const questionText = "Question Text";
|
const questionText = "Question Text";
|
||||||
|
|
@ -13,8 +12,6 @@ const mockMixin = {
|
||||||
};
|
};
|
||||||
const maska = jest.fn();
|
const maska = jest.fn();
|
||||||
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
describe("textboxQuestion.vue", () => {
|
describe("textboxQuestion.vue", () => {
|
||||||
it("Should render a text input", async () => {
|
it("Should render a text input", async () => {
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
|
|
@ -77,13 +77,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { useField, validate } from "vee-validate";
|
import { useField, validate } from "vee-validate";
|
||||||
import { storeActions } from "@/constants/store-actions";
|
|
||||||
import loader from "@/ux-components/loader/loader.vue";
|
import loader from "@/ux-components/loader/loader.vue";
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
import { v4 as uuidv4 } from "uuid";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "textbox-question",
|
name: "textbox-question",
|
||||||
props: {
|
props: {
|
||||||
|
customInputId: String,
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
default: "text",
|
default: "text",
|
||||||
|
|
@ -97,7 +98,6 @@ export default {
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
modelValue: String,
|
modelValue: String,
|
||||||
customInputId: String,
|
|
||||||
isDisabled: Boolean,
|
isDisabled: Boolean,
|
||||||
isRequired: Boolean,
|
isRequired: Boolean,
|
||||||
hasIcon: Boolean, // If input has an icon
|
hasIcon: Boolean, // If input has an icon
|
||||||
|
|
@ -120,7 +120,8 @@ export default {
|
||||||
centerErrorMessage: Boolean,
|
centerErrorMessage: Boolean,
|
||||||
},
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
const inputId = !props.customInputId ? `input-${crypto.randomUUID()}` : props.customInputId;
|
const uuid = uuidv4();
|
||||||
|
const inputId = !props.customInputId ? `input-${uuid}` : props.customInputId;
|
||||||
|
|
||||||
const propsClone = Object.assign({}, props);
|
const propsClone = Object.assign({}, props);
|
||||||
const modelValue = propsClone.modelValue;
|
const modelValue = propsClone.modelValue;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// Components
|
// Components
|
||||||
import addressQuestions from "@/layouts/address-lookup/customer-questions/address-questions/address-questions";
|
import addressQuestions from "@/fmg-components/address-questions/address-questions";
|
||||||
import alert from "@/ux-components/alert/alert";
|
import alert from "@/ux-components/alert/alert";
|
||||||
|
|
||||||
// Supporting Files
|
// Supporting Files
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="address-questions" role="application">
|
<div class="address-questions">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4" aria-live="polite">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<textboxQuestion
|
<textboxQuestion
|
||||||
id="streetAddressField"
|
id="streetAddressField"
|
||||||
|
|
@ -1,8 +1,5 @@
|
||||||
import { mount } from "@vue/test-utils";
|
import { mount } from "@vue/test-utils";
|
||||||
import contentGroupModal from "./content-group-modal";
|
import contentGroupModal from "./content-group-modal";
|
||||||
import crypto from "crypto";
|
|
||||||
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
describe("content-group-modal.vue", () => {
|
describe("content-group-modal.vue", () => {
|
||||||
it("Should display header text when HeaderText is defined in the CMS", async () => {
|
it("Should display header text when HeaderText is defined in the CMS", async () => {
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import addressQuestions from "@/layouts/address-lookup/customer-questions/address-questions/address-questions";
|
import addressQuestions from "@/fmg-components/address-questions/address-questions";
|
||||||
import textboxQuestion from "@/digital-components/textbox-question/textbox-question";
|
import textboxQuestion from "@/digital-components/textbox-question/textbox-question";
|
||||||
import { defineRule } from "vee-validate";
|
import { defineRule } from "vee-validate";
|
||||||
import { required } from "@/helpers/validation-rules";
|
import { required } from "@/helpers/validation-rules";
|
||||||
|
|
|
||||||
|
|
@ -215,7 +215,7 @@ export default {
|
||||||
|
|
||||||
const alertReasonsPromise = locationAlerts.methods.loadInitialData(
|
const alertReasonsPromise = locationAlerts.methods.loadInitialData(
|
||||||
store.getters.order.serviceLocation.zipCodeCtu,
|
store.getters.order.serviceLocation.zipCodeCtu,
|
||||||
store.getters.order.serviceLocation.provider?.address?.zipCtu
|
store.getters.order.serviceLocation.provider?.address?.zipCodeCtu
|
||||||
);
|
);
|
||||||
// Settle promises and get results
|
// Settle promises and get results
|
||||||
const promiseResultMap = [
|
const promiseResultMap = [
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,8 @@ jest.mock("@/store", () => ({
|
||||||
streetAddress: null,
|
streetAddress: null,
|
||||||
city: null,
|
city: null,
|
||||||
state: null,
|
state: null,
|
||||||
zip: null,
|
zipCode: null,
|
||||||
|
zipCodeCtu: null,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,6 @@ import mobileLocationModalQuestions from "./mobile-location-modal-questions";
|
||||||
import { mount, shallowMount } from "@vue/test-utils";
|
import { mount, shallowMount } from "@vue/test-utils";
|
||||||
import { storeActions } from "@/constants/store-actions";
|
import { storeActions } from "@/constants/store-actions";
|
||||||
import { getMountOptions } from "@/helpers/unit-test-helper.js";
|
import { getMountOptions } from "@/helpers/unit-test-helper.js";
|
||||||
import modal from "@/digital-components/modal/modal";
|
|
||||||
|
|
||||||
import crypto from "crypto";
|
|
||||||
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
const linkWidgetName = "linkWidgetName";
|
const linkWidgetName = "linkWidgetName";
|
||||||
const modalWidgetName = "modalWidgetName";
|
const modalWidgetName = "modalWidgetName";
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ import textLink from "@/ux-components/text-link/text-link";
|
||||||
import textBlock from "@/digital-components/text-block/text-block";
|
import textBlock from "@/digital-components/text-block/text-block";
|
||||||
import modal from "@/digital-components/modal/modal";
|
import modal from "@/digital-components/modal/modal";
|
||||||
import alert from "@/ux-components/alert/alert";
|
import alert from "@/ux-components/alert/alert";
|
||||||
import addressQuestions from "@/layouts/address-lookup/customer-questions/address-questions/address-questions";
|
import addressQuestions from "@/fmg-components/address-questions/address-questions";
|
||||||
import vehicleProtectedQuestion from "@/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question";
|
import vehicleProtectedQuestion from "@/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question";
|
||||||
|
|
||||||
// Helpers
|
// Helpers
|
||||||
|
|
@ -76,6 +76,7 @@ import {
|
||||||
|
|
||||||
// Validation
|
// Validation
|
||||||
import { useField } from "vee-validate";
|
import { useField } from "vee-validate";
|
||||||
|
import { v4 as uuidv4 } from "uuid";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "mobile-location-modal-questions",
|
name: "mobile-location-modal-questions",
|
||||||
|
|
@ -84,13 +85,13 @@ export default {
|
||||||
return {
|
return {
|
||||||
internalModel: deepClone(this.modelValue),
|
internalModel: deepClone(this.modelValue),
|
||||||
displayInvalidZipAlert: false,
|
displayInvalidZipAlert: false,
|
||||||
addressQuestionsKey: 0,
|
|
||||||
isModalOpened: false,
|
isModalOpened: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
|
const uuid = uuidv4();
|
||||||
const componentId = !props.customComponentId
|
const componentId = !props.customComponentId
|
||||||
? `component-${crypto.randomUUID()}`
|
? `component-${uuid}`
|
||||||
: props.customComponentId;
|
: props.customComponentId;
|
||||||
|
|
||||||
// Integrate this component as a single field with an object for it's value into the page level validation
|
// Integrate this component as a single field with an object for it's value into the page level validation
|
||||||
|
|
|
||||||
|
|
@ -393,8 +393,8 @@ export default {
|
||||||
streetAddress: this.selectedProvider?.address?.streetAddress,
|
streetAddress: this.selectedProvider?.address?.streetAddress,
|
||||||
city: this.selectedProvider?.address?.city,
|
city: this.selectedProvider?.address?.city,
|
||||||
state: this.selectedProvider?.address?.state,
|
state: this.selectedProvider?.address?.state,
|
||||||
zip: this.selectedProvider?.address?.zipCode,
|
zipCode: this.selectedProvider?.address?.zipCode,
|
||||||
zipCtu: this.selectedProvider?.address?.zipCodeCtu,
|
zipCodeCtu: this.selectedProvider?.address?.zipCodeCtu,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
import { mount, shallowMount } from "@vue/test-utils";
|
import { mount, shallowMount } from "@vue/test-utils";
|
||||||
import serviceZipModalQuestion from "./service-zip-modal-question";
|
import serviceZipModalQuestion from "./service-zip-modal-question";
|
||||||
import crypto from "crypto";
|
|
||||||
global.crypto = crypto;
|
|
||||||
|
|
||||||
jest.mock("@/digital-components/textbox-question/textbox-question", () => ({
|
jest.mock("@/digital-components/textbox-question/textbox-question", () => ({
|
||||||
getCmsContent: jest.fn((widgetName, cmsFieldName) => {
|
getCmsContent: jest.fn((widgetName, cmsFieldName) => {
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,8 @@ const getDefaultState = () => {
|
||||||
streetAddress: null,
|
streetAddress: null,
|
||||||
city: null,
|
city: null,
|
||||||
state: null,
|
state: null,
|
||||||
zip: null,
|
zipCode: null,
|
||||||
|
zipCodeCtu: null,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -265,7 +266,8 @@ export const mutations = {
|
||||||
streetAddress: serviceLocationInfo.provider?.address?.streetAddress,
|
streetAddress: serviceLocationInfo.provider?.address?.streetAddress,
|
||||||
city: serviceLocationInfo.provider?.address?.city,
|
city: serviceLocationInfo.provider?.address?.city,
|
||||||
state: serviceLocationInfo.provider?.address?.state,
|
state: serviceLocationInfo.provider?.address?.state,
|
||||||
zip: serviceLocationInfo.provider?.address?.zip,
|
zipCode: serviceLocationInfo.provider?.address?.zipCode,
|
||||||
|
zipCodeCtu: serviceLocationInfo.provider?.address?.zipCodeCtu,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
@ -380,7 +382,8 @@ export const mutations = {
|
||||||
streetAddress: null,
|
streetAddress: null,
|
||||||
city: null,
|
city: null,
|
||||||
state: null,
|
state: null,
|
||||||
zip: null,
|
zipCode: null,
|
||||||
|
zipCodeCtu: null,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
@ -469,8 +472,10 @@ export const mutations = {
|
||||||
sessionInformation.order.serviceLocation.provider?.address?.city;
|
sessionInformation.order.serviceLocation.provider?.address?.city;
|
||||||
state.order.serviceLocation.provider.address.state =
|
state.order.serviceLocation.provider.address.state =
|
||||||
sessionInformation.order.serviceLocation.provider?.address?.state;
|
sessionInformation.order.serviceLocation.provider?.address?.state;
|
||||||
state.order.serviceLocation.provider.address.zip =
|
state.order.serviceLocation.provider.address.zipCode =
|
||||||
sessionInformation.order.serviceLocation.provider?.address?.zip;
|
sessionInformation.order.serviceLocation.provider?.address?.zipCode;
|
||||||
|
state.order.serviceLocation.provider.address.zipCodeCtu =
|
||||||
|
sessionInformation.order.serviceLocation.provider?.address?.zipCodeCtu;
|
||||||
|
|
||||||
state.order.payment.isInsurance = sessionInformation.order.payment.isInsurance;
|
state.order.payment.isInsurance = sessionInformation.order.payment.isInsurance;
|
||||||
state.order.payment.insuranceCoverage.isVerified =
|
state.order.payment.insuranceCoverage.isVerified =
|
||||||
|
|
@ -1406,8 +1411,8 @@ export const actions = {
|
||||||
order.serviceLocation.provider?.address?.streetAddress,
|
order.serviceLocation.provider?.address?.streetAddress,
|
||||||
city: order.serviceLocation.provider?.address?.city,
|
city: order.serviceLocation.provider?.address?.city,
|
||||||
state: order.serviceLocation.provider?.address?.state,
|
state: order.serviceLocation.provider?.address?.state,
|
||||||
zip: order.serviceLocation.provider?.address?.zip,
|
zipCode: order.serviceLocation.provider?.address?.zipCode,
|
||||||
zipCtu: order.serviceLocation.provider?.address?.zipCtu,
|
zipCodeCtu: order.serviceLocation.provider?.address?.zipCodeCtu,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -1917,7 +1922,7 @@ export const actions = {
|
||||||
if (context.state.order.serviceLocation) {
|
if (context.state.order.serviceLocation) {
|
||||||
if (
|
if (
|
||||||
serviceLocationInfo.zipCode !== context.state.order.serviceLocation.zipCode ||
|
serviceLocationInfo.zipCode !== context.state.order.serviceLocation.zipCode ||
|
||||||
!deepEqual(
|
!providersEqual(
|
||||||
serviceLocationInfo.provider,
|
serviceLocationInfo.provider,
|
||||||
context.state.order.serviceLocation.provider
|
context.state.order.serviceLocation.provider
|
||||||
) ||
|
) ||
|
||||||
|
|
@ -2147,6 +2152,17 @@ function convertGlassPieceToBackEndCompatibleFormat(glassPieces) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function providersEqual(providerA, providerB) {
|
||||||
|
return (
|
||||||
|
providerA.providerNumber === providerB.providerNumber &&
|
||||||
|
providerA.address?.city === providerB.address?.city &&
|
||||||
|
providerA.address?.state === providerB.address?.state &&
|
||||||
|
providerA.address?.streetAddress === providerB.address?.streetAddress &&
|
||||||
|
providerA.address?.zipCode === providerB.address?.zipCode
|
||||||
|
);
|
||||||
|
//TODO: Change back to deepEqual once zipCodeCtu is added to saveSession.
|
||||||
|
}
|
||||||
|
|
||||||
// This function will verify schedule info is still valid.
|
// This function will verify schedule info is still valid.
|
||||||
// check to see if we have an appointment date on the order object.
|
// check to see if we have an appointment date on the order object.
|
||||||
// if so, make sure it's not in the past. if in the past, clear schedule info in store.
|
// if so, make sure it's not in the past. if in the past, clear schedule info in store.
|
||||||
|
|
|
||||||
|
|
@ -1071,7 +1071,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -1099,7 +1100,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
@ -1130,7 +1132,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -1158,7 +1161,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "321 Test Lane",
|
streetAddress: "321 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
@ -1189,7 +1193,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -1217,7 +1222,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
@ -1248,7 +1254,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -1276,7 +1283,8 @@ describe("Actions", () => {
|
||||||
streetAddress: "123 Test Lane",
|
streetAddress: "123 Test Lane",
|
||||||
city: "Columbus",
|
city: "Columbus",
|
||||||
state: "OH",
|
state: "OH",
|
||||||
zip: "43212",
|
zipCode: "43212",
|
||||||
|
zipCodeCtu: "01820",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue