diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-28 05:31:06 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-28 07:37:55 +0800 |
commit | 082c5c375e07fc8781ca74671326e5184422d298 (patch) | |
tree | baf4bf60697db2f05b2eac133cff1f2f5ba00449 /packages/0x.js/test | |
parent | 5977fa881e6d68c6779d4708d55306cd05a61fb3 (diff) | |
download | dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.tar dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.tar.gz dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.tar.bz2 dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.tar.lz dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.tar.xz dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.tar.zst dexon-sol-tools-082c5c375e07fc8781ca74671326e5184422d298.zip |
Fix tests
Diffstat (limited to 'packages/0x.js/test')
-rw-r--r-- | packages/0x.js/test/exchange_wrapper_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/0x.js/test/exchange_wrapper_test.ts b/packages/0x.js/test/exchange_wrapper_test.ts index f6c823cc4..3e2160330 100644 --- a/packages/0x.js/test/exchange_wrapper_test.ts +++ b/packages/0x.js/test/exchange_wrapper_test.ts @@ -124,6 +124,7 @@ describe('ExchangeWrapper', () => { it('should not validate when orderTransactionOptions specify not to validate', async () => { return expect(zeroEx.exchange.batchFillOrKillAsync(orderFillRequests, takerAddress, { shouldValidate: false, + gasLimit: 200000, // If we don't pass this gas estimation will fail })).to.not.be.rejectedWith(ExchangeContractErrs.OrderFillAmountZero); }); }); |