File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
dev-packages/node-integration-tests
suites/tracing/redis-cache Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { cleanupChildProcesses , createRunner } from '../../../utils/runner' ;
2
2
3
3
// When running docker compose, we need a larger timeout, as this takes some time...
4
- jest . setTimeout ( 75000 ) ;
4
+ jest . setTimeout ( 90000 ) ;
5
5
6
6
describe ( 'redis cache auto instrumentation' , ( ) => {
7
7
afterAll ( ( ) => {
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ async function runDockerCompose(options: DockerOptions): Promise<VoidFunction> {
124
124
const timeout = setTimeout ( ( ) => {
125
125
close ( ) ;
126
126
reject ( new Error ( 'Timed out waiting for docker-compose' ) ) ;
127
- } , 60_000 ) ;
127
+ } , 75_000 ) ;
128
128
129
129
function newData ( data : Buffer ) : void {
130
130
const text = data . toString ( 'utf8' ) ;
You can’t perform that action at this time.
0 commit comments