aboutsummaryrefslogtreecommitdiffstats
path: root/test/web3_beta_test.ts
blob: e3481224398f3d29f66a37044c350d54355d5cbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as chai from 'chai';
import {chaiSetup} from './utils/chai_setup';
import 'mocha';
import {ZeroEx, Order, SubscriptionOpts, TokenEvents, ContractEvent} from '../src';
import {web3Factory} from './utils/web3_factory';

chaiSetup.configure();
const expect = chai.expect;

describe('ZeroEx with beta web3', () => {
    const web3_beta_provider = web3Factory.getProviderBeta();
    const zeroEx = new ZeroEx(web3_beta_provider);
    it('is able to make a call using a beta provider', async () => {
        await zeroEx.tokenRegistry.getTokenAddressesAsync();
    });
});