From c4ee2d73865a1444c079b9e2836b7630a0adf03e Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Sun, 12 Nov 2017 22:17:18 -0500 Subject: Switch over to Lerna + Yarn Workspaces setup for a mono-repo approach --- test/artifacts_test.ts | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 test/artifacts_test.ts (limited to 'test/artifacts_test.ts') diff --git a/test/artifacts_test.ts b/test/artifacts_test.ts deleted file mode 100644 index b2866a1d6..000000000 --- a/test/artifacts_test.ts +++ /dev/null @@ -1,49 +0,0 @@ -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); - }); -}); -- cgit v1.2.3