@@ -34,23 +34,6 @@ describe('Estimates Integration', function () {
34
34
expect ( estimate2 . mass_g ) . to . be . greaterThan ( estimate1 . mass_g ) ;
35
35
} ) ;
36
36
37
- it ( 'supports creating shipping estimates' , async function ( ) {
38
- const createEstimateResponse = await patch . estimates . createShippingEstimate (
39
- {
40
- distance_m : 100000 ,
41
- transportation_method : 'rail' ,
42
- package_mass_g : 50000 ,
43
- create_order : false
44
- }
45
- ) ;
46
- const estimate = createEstimateResponse . data ;
47
-
48
- expect ( estimate . type ) . to . be . eq ( 'ecommerce' ) ;
49
- expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
50
- expect ( estimate . production ) . to . be . eq ( false ) ;
51
- expect ( estimate . order ) . to . be . eq ( null ) ;
52
- } ) ;
53
-
54
37
it ( 'supports creating ecommerce estimates' , async function ( ) {
55
38
const createEstimateResponse =
56
39
await patch . estimates . createEcommerceEstimate ( {
@@ -67,22 +50,6 @@ describe('Estimates Integration', function () {
67
50
expect ( estimate . order ) . to . be . eq ( null ) ;
68
51
} ) ;
69
52
70
- it ( 'supports creating vehicle estimates without an order' , async function ( ) {
71
- const createEstimateResponse = await patch . estimates . createVehicleEstimate ( {
72
- distance_m : 100000 ,
73
- make : 'Toyota' ,
74
- model : 'Corolla' ,
75
- year : 2005 ,
76
- create_order : false
77
- } ) ;
78
- const estimate = createEstimateResponse . data ;
79
-
80
- expect ( estimate . type ) . to . be . eq ( 'vehicle' ) ;
81
- expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
82
- expect ( estimate . production ) . to . be . eq ( false ) ;
83
- expect ( estimate . order ) . to . be . eq ( null ) ;
84
- } ) ;
85
-
86
53
it ( 'supports creating bitcoin estimates without parameters' , async function ( ) {
87
54
const { data : estimate } = await patch . estimates . createBitcoinEstimate ( ) ;
88
55
@@ -124,20 +91,6 @@ describe('Estimates Integration', function () {
124
91
expect ( estimate1 . mass_g ) . to . be . below ( estimate2 . mass_g ) ;
125
92
} ) ;
126
93
127
- it ( 'supports creating ethereum estimates with a gas value' , async function ( ) {
128
- const createEstimateResponse = await patch . estimates . createEthereumEstimate (
129
- {
130
- gas_used : 1000
131
- }
132
- ) ;
133
-
134
- const estimate = createEstimateResponse . data ;
135
-
136
- expect ( estimate . type ) . to . be . eq ( 'ethereum' ) ;
137
- expect ( estimate . mass_g ) . to . be . above ( 0 ) ;
138
- expect ( estimate . production ) . to . be . eq ( false ) ;
139
- } ) ;
140
-
141
94
it ( 'supports creating hotel estimates' , async function ( ) {
142
95
const createEstimateResponse = await patch . estimates . createHotelEstimate ( {
143
96
country_code : 'US' ,
0 commit comments