unit test fix

This commit is contained in:
Katie Kroell 2025-12-11 13:53:06 -05:00
parent f19287c162
commit b548455805

View file

@ -1930,6 +1930,8 @@ describe('Store', () => {
store.order.vehicle.carId = carId;
const zipCode = getRandomString(6, 6);
const radius = getRandomInt(5, 100);
const isBigTruck = false;
store.order.vehicle.isBigTruck = isBigTruck;
const expectedEndpoint = [
endpoints.GetProviders.url,
zipCode,
@ -1937,7 +1939,8 @@ describe('Store', () => {
radius,
parentAccountNumber,
'false',
carId
carId,
isBigTruck
].join('/');
// Act