aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-12 00:49:37 +0800
committerFabio Berger <me@fabioberger.com>2018-07-12 00:49:37 +0800
commitabf87a643d85827cb1186e913fa6ae6bc04c8df1 (patch)
tree3d4a2210d522f887329ca35f114ccdacd99f8828
parent3824ea9079f3034fb34750c8b80125462f42c79c (diff)
downloaddexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.tar
dexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.tar.gz
dexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.tar.bz2
dexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.tar.lz
dexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.tar.xz
dexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.tar.zst
dexon-sol-tools-abf87a643d85827cb1186e913fa6ae6bc04c8df1.zip
Remove artifact tests since no testnet deployments are finalized
-rw-r--r--packages/0x.js/test/artifacts_test.ts48
1 files changed, 0 insertions, 48 deletions
diff --git a/packages/0x.js/test/artifacts_test.ts b/packages/0x.js/test/artifacts_test.ts
deleted file mode 100644
index e65b85ad6..000000000
--- a/packages/0x.js/test/artifacts_test.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-import { web3Factory } from '@0xproject/dev-utils';
-
-import { ZeroEx } from '../src';
-
-import { chaiSetup } from './utils/chai_setup';
-import { constants } from './utils/constants';
-
-chaiSetup.configure();
-
-// 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 provider = web3Factory.getRpcProvider({ rpcUrl: kovanRpcUrl });
- const config = {
- networkId: constants.KOVAN_NETWORK_ID,
- };
- const zeroEx = new ZeroEx(provider, config);
- it('token registry contract is deployed', async () => {
- await (zeroEx.tokenRegistry as any)._getTokenRegistryContractAsync();
- }).timeout(TIMEOUT);
- it('proxy contract is deployed', async () => {
- await (zeroEx.proxy as any)._getTokenTransferProxyContractAsync();
- }).timeout(TIMEOUT);
- it('exchange contract is deployed', async () => {
- await (zeroEx.exchange as any)._getExchangeContractAsync();
- }).timeout(TIMEOUT);
- });
- describe('contracts are deployed on ropsten', () => {
- const ropstenRpcUrl = constants.ROPSTEN_RPC_URL;
- const provider = web3Factory.getRpcProvider({ rpcUrl: ropstenRpcUrl });
- const config = {
- networkId: constants.ROPSTEN_NETWORK_ID,
- };
- const zeroEx = new ZeroEx(provider, config);
- it('token registry contract is deployed', async () => {
- await (zeroEx.tokenRegistry as any)._getTokenRegistryContractAsync();
- }).timeout(TIMEOUT);
- it('proxy contract is deployed', async () => {
- await (zeroEx.proxy as any)._getTokenTransferProxyContractAsync();
- }).timeout(TIMEOUT);
- it('exchange contract is deployed', async () => {
- await (zeroEx.exchange as any)._getExchangeContractAsync();
- }).timeout(TIMEOUT);
- });
-});