We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80894c4 commit 664d305Copy full SHA for 664d305
dev-packages/node-integration-tests/suites/tracing/redis-cache/test.ts
@@ -1,7 +1,7 @@
1
import { cleanupChildProcesses, createRunner } from '../../../utils/runner';
2
3
// When running docker compose, we need a larger timeout, as this takes some time...
4
-jest.setTimeout(75000);
+jest.setTimeout(90000);
5
6
describe('redis cache auto instrumentation', () => {
7
afterAll(() => {
dev-packages/node-integration-tests/utils/runner.ts
@@ -124,7 +124,7 @@ async function runDockerCompose(options: DockerOptions): Promise<VoidFunction> {
124
const timeout = setTimeout(() => {
125
close();
126
reject(new Error('Timed out waiting for docker-compose'));
127
- }, 60_000);
+ }, 75_000);
128
129
function newData(data: Buffer): void {
130
const text = data.toString('utf8');
0 commit comments