@@ -149,7 +149,7 @@ describe('Estimates Integration', function () {
149
149
const estimate = createEstimateResponse . data ;
150
150
151
151
expect ( estimate . order ) . to . be . eq ( null ) ;
152
- expect ( estimate . mass_g ) . to . be . above ( 5_000 ) ;
152
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
153
153
expect ( estimate . production ) . to . be . eq ( false ) ;
154
154
expect ( estimate . type ) . to . be . eq ( 'shipping_air' ) ;
155
155
} ) ;
@@ -165,8 +165,8 @@ describe('Estimates Integration', function () {
165
165
} ) ;
166
166
const estimate = createEstimateResponse . data ;
167
167
168
- expect ( estimate . order . amount ) . to . be . above ( 500 ) ;
169
- expect ( estimate . mass_g ) . to . be . above ( 5_000 ) ;
168
+ expect ( estimate . order . amount ) . to . be . above ( 0 ) ;
169
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
170
170
expect ( estimate . production ) . to . be . eq ( false ) ;
171
171
expect ( estimate . type ) . to . be . eq ( 'shipping_air' ) ;
172
172
} ) ;
@@ -183,7 +183,7 @@ describe('Estimates Integration', function () {
183
183
const estimate = createEstimateResponse . data ;
184
184
185
185
expect ( estimate . order ) . to . be . eq ( null ) ;
186
- expect ( estimate . mass_g ) . to . be . above ( 300 ) ;
186
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
187
187
expect ( estimate . production ) . to . be . eq ( false ) ;
188
188
expect ( estimate . type ) . to . be . eq ( 'shipping_rail' ) ;
189
189
} ) ;
@@ -198,7 +198,7 @@ describe('Estimates Integration', function () {
198
198
const estimate = createEstimateResponse . data ;
199
199
200
200
expect ( estimate . order ) . to . be . eq ( null ) ;
201
- expect ( estimate . mass_g ) . to . be . above ( 800 ) ;
201
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
202
202
expect ( estimate . production ) . to . be . eq ( false ) ;
203
203
expect ( estimate . type ) . to . be . eq ( 'shipping_rail' ) ;
204
204
} ) ;
@@ -213,8 +213,8 @@ describe('Estimates Integration', function () {
213
213
} ) ;
214
214
const estimate = createEstimateResponse . data ;
215
215
216
- expect ( estimate . order . amount ) . to . be . above ( 200 ) ;
217
- expect ( estimate . mass_g ) . to . be . above ( 900 ) ;
216
+ expect ( estimate . order . amount ) . to . be . above ( 0 ) ;
217
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
218
218
expect ( estimate . production ) . to . be . eq ( false ) ;
219
219
expect ( estimate . type ) . to . be . eq ( 'shipping_rail' ) ;
220
220
} ) ;
@@ -231,7 +231,7 @@ describe('Estimates Integration', function () {
231
231
const estimate = createEstimateResponse . data ;
232
232
233
233
expect ( estimate . order ) . to . be . eq ( null ) ;
234
- expect ( estimate . mass_g ) . to . be . above ( 500 ) ;
234
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
235
235
expect ( estimate . production ) . to . be . eq ( false ) ;
236
236
expect ( estimate . type ) . to . be . eq ( 'shipping_road' ) ;
237
237
} ) ;
@@ -246,7 +246,7 @@ describe('Estimates Integration', function () {
246
246
const estimate = createEstimateResponse . data ;
247
247
248
248
expect ( estimate . order ) . to . be . eq ( null ) ;
249
- expect ( estimate . mass_g ) . to . be . above ( 5_000 ) ;
249
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
250
250
expect ( estimate . production ) . to . be . eq ( false ) ;
251
251
expect ( estimate . type ) . to . be . eq ( 'shipping_road' ) ;
252
252
} ) ;
@@ -261,8 +261,8 @@ describe('Estimates Integration', function () {
261
261
} ) ;
262
262
const estimate = createEstimateResponse . data ;
263
263
264
- expect ( estimate . order . amount ) . to . be . above ( 500 ) ;
265
- expect ( estimate . mass_g ) . to . be . above ( 5_000 ) ;
264
+ expect ( estimate . order . amount ) . to . be . above ( 0 ) ;
265
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
266
266
expect ( estimate . production ) . to . be . eq ( false ) ;
267
267
expect ( estimate . type ) . to . be . eq ( 'shipping_road' ) ;
268
268
} ) ;
@@ -279,7 +279,7 @@ describe('Estimates Integration', function () {
279
279
const estimate = createEstimateResponse . data ;
280
280
281
281
expect ( estimate . order ) . to . be . eq ( null ) ;
282
- expect ( estimate . mass_g ) . to . be . above ( 500 ) ;
282
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
283
283
expect ( estimate . production ) . to . be . eq ( false ) ;
284
284
expect ( estimate . type ) . to . be . eq ( 'shipping_sea' ) ;
285
285
} ) ;
@@ -294,7 +294,7 @@ describe('Estimates Integration', function () {
294
294
const estimate = createEstimateResponse . data ;
295
295
296
296
expect ( estimate . order ) . to . be . eq ( null ) ;
297
- expect ( estimate . mass_g ) . to . be . above ( 1_000 ) ;
297
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
298
298
expect ( estimate . production ) . to . be . eq ( false ) ;
299
299
expect ( estimate . type ) . to . be . eq ( 'shipping_sea' ) ;
300
300
} ) ;
@@ -309,8 +309,8 @@ describe('Estimates Integration', function () {
309
309
} ) ;
310
310
const estimate = createEstimateResponse . data ;
311
311
312
- expect ( estimate . order . amount ) . to . be . above ( 500 ) ;
313
- expect ( estimate . mass_g ) . to . be . above ( 1_500 ) ;
312
+ expect ( estimate . order . amount ) . to . be . above ( 0 ) ;
313
+ expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
314
314
expect ( estimate . production ) . to . be . eq ( false ) ;
315
315
expect ( estimate . type ) . to . be . eq ( 'shipping_sea' ) ;
316
316
} ) ;
0 commit comments