diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-28 17:04:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-28 17:04:16 +0800 |
commit | 988a3347582cd812aadeaa0cdaef67389c8d833d (patch) | |
tree | b3067914037f0423480be297c860b4c3adaf2e3a /packages/order-watcher | |
parent | 57d5fbfbd8d15d96061687e5badcecec4ffdd713 (diff) | |
parent | 4fe626904337290774e39f3aba143fa776785269 (diff) | |
download | dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.tar dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.tar.gz dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.tar.bz2 dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.tar.lz dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.tar.xz dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.tar.zst dexon-sol-tools-988a3347582cd812aadeaa0cdaef67389c8d833d.zip |
Merge pull request #707 from 0xProject/feature/combinatorial-testing
OrderFill Declarative Testing & Combinatorial Tests [Merge after #760]
Diffstat (limited to 'packages/order-watcher')
-rw-r--r-- | packages/order-watcher/test/global_hooks.ts | 2 |
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 9d6903af5..30b0cd697 100644 --- a/packages/order-watcher/test/global_hooks.ts +++ b/packages/order-watcher/test/global_hooks.ts @@ -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 = 25000; this.timeout(mochaTestTimeoutMs); const txDefaults = { gas: devConstants.GAS_LIMIT, |