diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-08 23:01:40 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-14 22:47:02 +0800 |
commit | cb596c1413938ce23901135f8235bb813cc6e784 (patch) | |
tree | 2810c3801e369691c482911af7218f7f4db43907 /packages/0x.js/test/order_state_watcher_test.ts | |
parent | 6120a43fff7b1b1aa1813533f3a990bb72df74a0 (diff) | |
download | dexon-0x-contracts-cb596c1413938ce23901135f8235bb813cc6e784.tar.gz dexon-0x-contracts-cb596c1413938ce23901135f8235bb813cc6e784.tar.zst dexon-0x-contracts-cb596c1413938ce23901135f8235bb813cc6e784.zip |
Move more shared utils into utils package and reuse them
Diffstat (limited to 'packages/0x.js/test/order_state_watcher_test.ts')
-rw-r--r-- | packages/0x.js/test/order_state_watcher_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/test/order_state_watcher_test.ts b/packages/0x.js/test/order_state_watcher_test.ts index b5968dc24..4086c00fd 100644 --- a/packages/0x.js/test/order_state_watcher_test.ts +++ b/packages/0x.js/test/order_state_watcher_test.ts @@ -1,3 +1,4 @@ +import {BlockchainLifecycle} from '@0xproject/dev-utils'; import {Web3Wrapper} from '@0xproject/web3-wrapper'; import BigNumber from 'bignumber.js'; import * as chai from 'chai'; @@ -21,7 +22,6 @@ import { import {OrderStateWatcher} from '../src/order_watcher/order_state_watcher'; import {DoneCallback} from '../src/types'; -import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; import {chaiSetup} from './utils/chai_setup'; import {constants} from './utils/constants'; import {FillScenarios} from './utils/fill_scenarios'; @@ -33,7 +33,7 @@ const TIMEOUT_MS = 150; chaiSetup.configure(); const expect = chai.expect; -const blockchainLifecycle = new BlockchainLifecycle(); +const blockchainLifecycle = new BlockchainLifecycle(constants.RPC_URL); describe('OrderStateWatcher', () => { let web3: Web3; |