diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-14 01:52:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-14 01:52:08 +0800 |
commit | 58a318b754c3d3d854e36f4b56b37f7de8c0913a (patch) | |
tree | d8e3e52fe55e1c3c4e90299708fa8197f9b2002e /packages/0x.js/test/artifacts_test.ts | |
parent | a74ec0effa818a86233fe64cb0dad2c61bbb4bb6 (diff) | |
parent | ff07f490025447ff11bbdb68ef46304e981f5696 (diff) | |
download | dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.gz dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.bz2 dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.lz dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.xz dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.zst dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.zip |
Merge pull request #214 from 0xProject/monoRepo
Switch over to Lerna + Yarn Workspaces setup for a mono-repo approach
Diffstat (limited to 'packages/0x.js/test/artifacts_test.ts')
-rw-r--r-- | packages/0x.js/test/artifacts_test.ts | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/packages/0x.js/test/artifacts_test.ts b/packages/0x.js/test/artifacts_test.ts new file mode 100644 index 000000000..b2866a1d6 --- /dev/null +++ b/packages/0x.js/test/artifacts_test.ts @@ -0,0 +1,49 @@ +import * as fs from 'fs'; +import * as chai from 'chai'; +import {chaiSetup} from './utils/chai_setup'; +import HDWalletProvider = require('truffle-hdwallet-provider'); +import {ZeroEx} from '../src'; +import {constants} from './utils/constants'; + +chaiSetup.configure(); +const expect = chai.expect; + +// Those tests are slower cause they're talking to a remote node +const TIMEOUT = 10000; + +describe('Artifacts', () => { + describe('contracts are deployed on kovan', () => { + const kovanRpcUrl = constants.KOVAN_RPC_URL; + const packageJSONContent = fs.readFileSync('package.json', 'utf-8'); + const packageJSON = JSON.parse(packageJSONContent); + const mnemonic = packageJSON.config.mnemonic; + const web3Provider = new HDWalletProvider(mnemonic, kovanRpcUrl); + const zeroEx = new ZeroEx(web3Provider); + it('token registry contract is deployed', async () => { + await (zeroEx.tokenRegistry as any)._getTokenRegistryContractAsync(); + }).timeout(TIMEOUT); + it('proxy contract is deployed', async () => { + await (zeroEx.token as any)._getTokenTransferProxyAddressAsync(); + }).timeout(TIMEOUT); + it('exchange contract is deployed', async () => { + await zeroEx.exchange.getContractAddressAsync(); + }).timeout(TIMEOUT); + }); + describe('contracts are deployed on ropsten', () => { + const ropstenRpcUrl = constants.ROPSTEN_RPC_URL; + const packageJSONContent = fs.readFileSync('package.json', 'utf-8'); + const packageJSON = JSON.parse(packageJSONContent); + const mnemonic = packageJSON.config.mnemonic; + const web3Provider = new HDWalletProvider(mnemonic, ropstenRpcUrl); + const zeroEx = new ZeroEx(web3Provider); + it('token registry contract is deployed', async () => { + await (zeroEx.tokenRegistry as any)._getTokenRegistryContractAsync(); + }).timeout(TIMEOUT); + it('proxy contract is deployed', async () => { + await (zeroEx.token as any)._getTokenTransferProxyAddressAsync(); + }).timeout(TIMEOUT); + it('exchange contract is deployed', async () => { + await zeroEx.exchange.getContractAddressAsync(); + }).timeout(TIMEOUT); + }); +}); |