1
0
Fork 0
mirror of synced 2024-08-15 01:51:33 +12:00

Increase timeout

This commit is contained in:
adrinr 2023-02-01 12:29:03 +00:00
parent 14924df2d6
commit 1d8c27bdc4
2 changed files with 3 additions and 1 deletions

View file

@ -64,7 +64,7 @@ const print = (fn: any, data: any[]) => {
message = message + ` [identityId=${identityId}]`
}
fn(message, data)
// fn(message, data)
}
const logging = (ctx: any, next: any) => {

View file

@ -11,6 +11,8 @@ if (!process.env.CI) {
// set a longer timeout in dev for debugging
// 100 seconds
jest.setTimeout(100000)
} else {
jest.setTimeout(30000)
}
testContainerUtils.setupEnv(env, coreEnv)