Skip to content

Commit 57ec68a

Browse files
committed
Windows timeout
1 parent 937fe36 commit 57ec68a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/integration-tests/fixtures/debug-ids-already-injected/debug-ids-already-injected.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe("vite 6 bundle", { timeout: 30_000 }, () => {
5353
stdio: "inherit",
5454
env: { ...process.env, SENTRY_TEST_OVERRIDE_TEMP_DIR: tempDir },
5555
});
56-
});
56+
}, 30_000);
5757

5858
test("check vite 6 bundle", () => {
5959
expected(tempDir);
@@ -75,7 +75,7 @@ describe("webpack bundle", { timeout: 30_000 }, () => {
7575
stdio: "inherit",
7676
env: { ...process.env, SENTRY_TEST_OVERRIDE_TEMP_DIR: tempDir },
7777
});
78-
});
78+
}, 30_000);
7979

8080
test("check webpack bundle", () => {
8181
expected(tempDir);
@@ -97,7 +97,7 @@ describe("rollup bundle", { timeout: 30_000 }, () => {
9797
stdio: "inherit",
9898
env: { ...process.env, SENTRY_TEST_OVERRIDE_TEMP_DIR: tempDir },
9999
});
100-
});
100+
}, 30_000);
101101

102102
test("check rollup bundle", () => {
103103
expected(tempDir);

0 commit comments

Comments
 (0)