diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-09-06 16:35:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 16:35:19 +0800 |
commit | 35c133caeda613121d7d90f3f1347ebdc8087d66 (patch) | |
tree | 6156865472010078a9f27b905bcaec7782f6521c /test/web3_beta_test.ts | |
parent | 18a52a1ea758ee5640680f1097eba1ce9a9e81fc (diff) | |
parent | f0a5ad2d2063fe8ba4682147ec2f73e2763b0275 (diff) | |
download | dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.gz dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.bz2 dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.lz dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.xz dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.zst dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.zip |
Merge branch 'development' into fix/signature-verification
Diffstat (limited to 'test/web3_beta_test.ts')
-rw-r--r-- | test/web3_beta_test.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/web3_beta_test.ts b/test/web3_beta_test.ts deleted file mode 100644 index e34812243..000000000 --- a/test/web3_beta_test.ts +++ /dev/null @@ -1,16 +0,0 @@ -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(); - }); -}); |