Update dev-utils and subproviders tests to use ganache in-process provider

This commit is contained in:
Fabio Berger
2018-04-04 11:35:58 +09:00
parent 6c02722f56
commit 5e4e27fed5
7 changed files with 38 additions and 27 deletions

View File

@@ -8,7 +8,7 @@ import { BlockchainLifecycle, web3Factory } from '../src';
const expect = chai.expect;
describe('BlockchainLifecycle tests', () => {
const web3Provider = web3Factory.getRpcProvider();
const web3Provider = web3Factory.getRpcProvider({ shouldUseInProcessGanache: true });
const web3Wrapper = new Web3Wrapper(web3Provider);
const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
describe('#startAsync/revertAsync', () => {