aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-09-29 00:18:19 +0800
committerGitHub <noreply@github.com>2017-09-29 00:18:19 +0800
commitcbc9e87d65171ae01a844f160f0b47f790bc3524 (patch)
tree9722f4823738d5396de61d92c84ce8b3ef8402cf /test
parenta0af2719963df3313b0eae40952203319ee1e64f (diff)
parentdb419ffcc76eb4e11f84aad3a51efe7fa900ef57 (diff)
downloaddexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.tar
dexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.tar.gz
dexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.tar.bz2
dexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.tar.lz
dexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.tar.xz
dexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.tar.zst
dexon-sol-tools-cbc9e87d65171ae01a844f160f0b47f790bc3524.zip
Merge pull request #173 from 0xProject/feature/ropsten-support
Add Ropsten support
Diffstat (limited to 'test')
-rw-r--r--test/artifacts_test.ts17
-rw-r--r--test/utils/constants.ts3
2 files changed, 19 insertions, 1 deletions
diff --git a/test/artifacts_test.ts b/test/artifacts_test.ts
index bd34a6b91..b2866a1d6 100644
--- a/test/artifacts_test.ts
+++ b/test/artifacts_test.ts
@@ -29,4 +29,21 @@ describe('Artifacts', () => {
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);
+ });
});
diff --git a/test/utils/constants.ts b/test/utils/constants.ts
index b677d7361..c7d3aebca 100644
--- a/test/utils/constants.ts
+++ b/test/utils/constants.ts
@@ -3,5 +3,6 @@ export const constants = {
RPC_HOST: 'localhost',
RPC_PORT: 8545,
TESTRPC_NETWORK_ID: 50,
- KOVAN_RPC_URL: 'https://kovan.0xproject.com',
+ KOVAN_RPC_URL: 'https://kovan.infura.io',
+ ROPSTEN_RPC_URL: 'https://ropsten.infura.io',
};