We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed8dc78 commit 5c0342fCopy full SHA for 5c0342f
test/integration/orders.test.js
@@ -39,8 +39,9 @@ describe('Orders Integration', function () {
39
expect(placeOrderResponse.data.state).to.equal('placed');
40
expect(placeOrderResponse.data.production).to.equal(false);
41
expect(placeOrderResponse.data.mass_g).to.equal(100);
42
- expect(placeOrderResponse.data.price_cents_usd).to.equal('1.0');
+ console.log(placeOrderResponse);
43
expect(placeOrderResponse.data.patch_fee_cents_usd).to.equal('0.0');
44
+ expect(placeOrderResponse.data.price_cents_usd).to.equal('1.0');
45
});
46
47
it('supports cancelling orders in a `draft` state', async function () {
0 commit comments