Skip to content

Commit dc8a9cc

Browse files
committed
Remove the test
1 parent b50fdba commit dc8a9cc

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

test/integration/estimates.test.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,6 @@ describe('Estimates Integration', function () {
2121
expect(retrieveEstimatesResponse.data.length).to.be.above(0);
2222
});
2323

24-
it('supports creating flight estimates with airports', async function () {
25-
const { data: estimate1 } = await patch.estimates.createFlightEstimate({
26-
origin_airport: 'SFO',
27-
destination_airport: 'LAX'
28-
});
29-
const { data: estimate2 } = await patch.estimates.createFlightEstimate({
30-
origin_airport: 'SFO',
31-
destination_airport: 'JFK'
32-
});
33-
34-
expect(estimate2.mass_g).to.be.greaterThan(estimate1.mass_g);
35-
});
36-
3724
it('supports creating bitcoin estimates without parameters', async function () {
3825
const { data: estimate } = await patch.estimates.createBitcoinEstimate();
3926

0 commit comments

Comments
 (0)