Increase timeout for contract migrations

This commit is contained in:
Leonid Logvinov
2018-06-08 15:09:54 -07:00
parent cdb165af7f
commit 6d5949ba9c
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ import { provider } from './utils/web3_wrapper';
before('migrate contracts', async function(): Promise<void> {
// HACK: Since the migrations take longer then our global mocha timeout limit
// we manually increase it for this before hook.
const mochaTestTimeoutMs = 20000;
const mochaTestTimeoutMs = 50000;
this.timeout(mochaTestTimeoutMs);
const txDefaults = {
gas: devConstants.GAS_LIMIT,