diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-07-12 08:44:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 08:44:24 +0800 |
commit | 98e8a6dd706f0a630402d9009ad3dcf9b0ff872d (patch) | |
tree | 67abd7c0bca868a3b2d1f46c6f30321ba7c175be /test/artifacts_test.ts | |
parent | 9bb14a1d69f63485650604b83b6bc784cfe2a8c6 (diff) | |
parent | 4efba2a4bc93f49f1962f1c774c628aea4d19251 (diff) | |
download | dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.tar dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.tar.gz dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.tar.bz2 dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.tar.lz dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.tar.xz dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.tar.zst dexon-sol-tools-98e8a6dd706f0a630402d9009ad3dcf9b0ff872d.zip |
Merge pull request #106 from 0xProject/single-exchange
Single exchange
Diffstat (limited to 'test/artifacts_test.ts')
-rw-r--r-- | test/artifacts_test.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/artifacts_test.ts b/test/artifacts_test.ts index 8393250aa..04b9ecb2d 100644 --- a/test/artifacts_test.ts +++ b/test/artifacts_test.ts @@ -27,8 +27,7 @@ describe('Artifacts', () => { await (zeroEx.token as any)._getProxyAddressAsync(); }).timeout(TIMEOUT); it('exchange contract is deployed', async () => { - const exchangeContractAddresses = await zeroEx.getAvailableExchangeContractAddressesAsync(); - expect(exchangeContractAddresses).to.have.lengthOf.above(0); + await zeroEx.exchange.getContractAddressAsync(); }).timeout(TIMEOUT); }); }); |