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 80e36b5 commit 63fe089Copy full SHA for 63fe089
tests/node_compat/run_all_test_unmodified.ts
@@ -28,7 +28,9 @@ const testSuitePath = new URL(import.meta.resolve("./runner/suite/"));
28
const testDirUrl = new URL("runner/suite/test/", import.meta.url).href;
29
const IS_CI = !!Deno.env.get("CI");
30
// The timeout ms for single test execution. If a single test didn't finish in this timeout milliseconds, the test is considered as failure
31
-const TIMEOUT = IS_CI ? 10_000 : 5000;
+const TIMEOUT = IS_CI
32
+ ? Deno.build.os === "darwin" && Deno.build.arch === "x86_64" ? 20_000 : 10_000
33
+ : 5000;
34
35
// The metadata of the test report
36
export type TestReportMetadata = {
0 commit comments