aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/test/artifacts_test.ts
blob: c05d513b304be580f820fc66736e6047a526cb08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { web3Factory } from '@0xproject/dev-utils';

import { ContractWrappers } 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;

// TODO: Re-enable those tests after final kovan and ropsten deployments are done.
describe.skip('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 contractWrappers = new ContractWrappers(provider, config);
        it('erc20 proxy contract is deployed', async () => {
            await (contractWrappers.erc20Proxy as any)._getTokenTransferProxyContractAsync();
        }).timeout(TIMEOUT);
        it('erc721 proxy contract is deployed', async () => {
            await (contractWrappers.erc721Proxy as any)._getTokenTransferProxyContractAsync();
        }).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 contractWrappers = new ContractWrappers(provider, config);
        it('erc20 proxy contract is deployed', async () => {
            await (contractWrappers.erc20Proxy as any)._getTokenTransferProxyContractAsync();
        }).timeout(TIMEOUT);
        it('erc721 proxy contract is deployed', async () => {
            await (contractWrappers.erc721Proxy as any)._getTokenTransferProxyContractAsync();
        }).timeout(TIMEOUT);
    });
});