diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-12-15 00:48:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 00:48:45 +0800 |
commit | a0aa21103b51ad287de1579832a4a490ca90175a (patch) | |
tree | d65274497474e65302a91e78efa1796558aa4380 /packages/0x.js/test/0x.js_test.ts | |
parent | d69143487ec441939a85ef2a7e92bb0a15cb2e6c (diff) | |
parent | ce242b10e2c4d35bbba3842d198b78373dd609f0 (diff) | |
download | dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.tar dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.tar.gz dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.tar.bz2 dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.tar.lz dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.tar.xz dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.tar.zst dexon-0x-contracts-a0aa21103b51ad287de1579832a4a490ca90175a.zip |
Merge pull request #258 from 0xProject/feature/contracts-refactor
A bunch of refactorings
Diffstat (limited to 'packages/0x.js/test/0x.js_test.ts')
-rw-r--r-- | packages/0x.js/test/0x.js_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/test/0x.js_test.ts b/packages/0x.js/test/0x.js_test.ts index 6b7a70699..52f9566dc 100644 --- a/packages/0x.js/test/0x.js_test.ts +++ b/packages/0x.js/test/0x.js_test.ts @@ -1,3 +1,4 @@ +import {BlockchainLifecycle} from '@0xproject/dev-utils'; import BigNumber from 'bignumber.js'; import * as chai from 'chai'; import * as _ from 'lodash'; @@ -6,13 +7,12 @@ import * as Sinon from 'sinon'; import {ApprovalContractEventArgs, LogWithDecodedArgs, Order, TokenEvents, ZeroEx, ZeroExError} from '../src'; -import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; import {chaiSetup} from './utils/chai_setup'; import {constants} from './utils/constants'; import {TokenUtils} from './utils/token_utils'; import {web3Factory} from './utils/web3_factory'; -const blockchainLifecycle = new BlockchainLifecycle(); +const blockchainLifecycle = new BlockchainLifecycle(constants.RPC_URL); chaiSetup.configure(); const expect = chai.expect; |