* generate wrappers in @0x/contract-wrappers and delete abi-gen-wrappers * trim exports from contract-wrappers * separate contract-wrappers tests to get rid of dependency cycle * remove dummy token contracts * temporarily skip coordinator test until we can upgrade coordinator server
7 lines
312 B
TypeScript
7 lines
312 B
TypeScript
before('set up mocha', 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 = 500000;
|
|
this.timeout(mochaTestTimeoutMs); // tslint:disable-line:no-invalid-this
|
|
});
|