update unit tests

This commit is contained in:
Katie Kroell 2024-01-04 09:41:16 -05:00
parent d3cc84cb6c
commit 67700ae621

View file

@ -1758,6 +1758,7 @@ describe('Store', () => {
const policyState = getRandomString(2, 2);
const status = getRandomString(6, 8);
const currentDeductible = getRandomInt(0, 5000);
const originalDeductible = getRandomInt(0, 5000);
const noCoverage = getRandomBoolean();
const isRepair = getRandomBoolean();
const policyNumber = getRandomString(10, 20);
@ -1772,6 +1773,7 @@ describe('Store', () => {
store.order.referralCorrelationId = referralCorrelationId;
store.issConfig.parentAccountNumber = accountNumber;
store.order.currentDeductible = currentDeductible;
store.order.originalDeductible = originalDeductible;
store.order.policy.noCoverage = noCoverage;
store.order.policy.status = status;
store.order.customer.address.state = policyState;
@ -1803,6 +1805,7 @@ describe('Store', () => {
policyState,
status,
currentDeductible,
originalDeductible,
noCoverage,
isRepair,
policyNumber,
@ -1837,6 +1840,7 @@ describe('Store', () => {
const policyState = getRandomString(2, 2);
const status = getRandomString(6, 8);
const currentDeductible = getRandomInt(0, 5000);
const originalDeductible = getRandomInt(0, 5000);
const noCoverage = getRandomBoolean();
const isRepair = getRandomBoolean();
const endorsementAnswers = [
@ -1871,6 +1875,7 @@ describe('Store', () => {
store.order.referralCorrelationId = referralCorrelationId;
store.issConfig.parentAccountNumber = accountNumber;
store.order.currentDeductible = currentDeductible;
store.order.originalDeductible = originalDeductible;
store.order.policy.noCoverage = noCoverage;
store.order.policy.status = status;
store.order.customer.address.state = policyState;
@ -1904,6 +1909,7 @@ describe('Store', () => {
policyState,
status,
currentDeductible,
originalDeductible,
noCoverage,
isRepair,
policyNumber,