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 88a068f commit 33ed21aCopy full SHA for 33ed21a
2 files changed
dev-packages/node-core-integration-tests/suites/cron/cron/scenario.ts
@@ -28,4 +28,4 @@ cron.start();
28
29
setTimeout(() => {
30
process.exit();
31
-}, 5000);
+}, 15_000);
dev-packages/node-core-integration-tests/suites/cron/cron/test.ts
@@ -5,7 +5,7 @@ afterAll(() => {
5
cleanupChildProcesses();
6
});
7
8
-test('cron instrumentation', async () => {
+test('cron instrumentation', { timeout: 30_000 }, async () => {
9
await createRunner(__dirname, 'scenario.ts')
10
.withMockSentryServer()
11
.expect({
0 commit comments