Skip to content

Commit 33ed21a

Browse files
test(node-core): Increase timeouts for flaky cron instrumentation test
Fixes #20971
1 parent 88a068f commit 33ed21a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dev-packages/node-core-integration-tests/suites/cron/cron/scenario.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ cron.start();
2828

2929
setTimeout(() => {
3030
process.exit();
31-
}, 5000);
31+
}, 15_000);

dev-packages/node-core-integration-tests/suites/cron/cron/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ afterAll(() => {
55
cleanupChildProcesses();
66
});
77

8-
test('cron instrumentation', async () => {
8+
test('cron instrumentation', { timeout: 30_000 }, async () => {
99
await createRunner(__dirname, 'scenario.ts')
1010
.withMockSentryServer()
1111
.expect({

0 commit comments

Comments
 (0)