Increase timeout
This commit is contained in:
parent
14924df2d6
commit
1d8c27bdc4
|
@ -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) => {
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue