unit test fix
This commit is contained in:
parent
f19287c162
commit
b548455805
1 changed files with 4 additions and 1 deletions
|
|
@ -1930,6 +1930,8 @@ describe('Store', () => {
|
||||||
store.order.vehicle.carId = carId;
|
store.order.vehicle.carId = carId;
|
||||||
const zipCode = getRandomString(6, 6);
|
const zipCode = getRandomString(6, 6);
|
||||||
const radius = getRandomInt(5, 100);
|
const radius = getRandomInt(5, 100);
|
||||||
|
const isBigTruck = false;
|
||||||
|
store.order.vehicle.isBigTruck = isBigTruck;
|
||||||
const expectedEndpoint = [
|
const expectedEndpoint = [
|
||||||
endpoints.GetProviders.url,
|
endpoints.GetProviders.url,
|
||||||
zipCode,
|
zipCode,
|
||||||
|
|
@ -1937,7 +1939,8 @@ describe('Store', () => {
|
||||||
radius,
|
radius,
|
||||||
parentAccountNumber,
|
parentAccountNumber,
|
||||||
'false',
|
'false',
|
||||||
carId
|
carId,
|
||||||
|
isBigTruck
|
||||||
].join('/');
|
].join('/');
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue