aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/test
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-13 19:18:19 +0800
committerFabio Berger <me@fabioberger.com>2018-06-13 19:18:19 +0800
commit3eb232b3fcd73eec25efa6754530bc54b88f3f82 (patch)
tree4ddcfc984c848ffa89e11b3a1c3988aefde40f6f /packages/order-watcher/test
parent38de1c9a315aec7f43b08d372dd2360c09bd0acd (diff)
downloaddexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.tar
dexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.tar.gz
dexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.tar.bz2
dexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.tar.lz
dexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.tar.xz
dexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.tar.zst
dexon-sol-tools-3eb232b3fcd73eec25efa6754530bc54b88f3f82.zip
For some reason order-watcher tests were timeing out so I increased the timeout limit
Diffstat (limited to 'packages/order-watcher/test')
-rw-r--r--packages/order-watcher/test/global_hooks.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/order-watcher/test/global_hooks.ts b/packages/order-watcher/test/global_hooks.ts
index f18eef379..2018c7545 100644
--- a/packages/order-watcher/test/global_hooks.ts
+++ b/packages/order-watcher/test/global_hooks.ts
@@ -7,7 +7,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 = 25000;
this.timeout(mochaTestTimeoutMs);
const txDefaults = {
gas: devConstants.GAS_LIMIT,