7 lines
311 B
TypeScript
7 lines
311 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 = 25000;
|
|
this.timeout(mochaTestTimeoutMs); // tslint:disable-line:no-invalid-this
|
|
});
|