From 81690617c0b3a0f3f1ff0917cbcbbbcedca0fd60 Mon Sep 17 00:00:00 2001 From: Kai Tamkun Date: Wed, 20 Nov 2024 19:24:47 -0800 Subject: [PATCH] Revert "Maybe increase the timeout with setDefaultTimeout too" This reverts commit 30eda1eca9bcc94bd5198d52aaf54c288d9f0cc3. --- test/napi/node-napi.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/napi/node-napi.test.ts b/test/napi/node-napi.test.ts index afd7c12da9..f1695f94b6 100644 --- a/test/napi/node-napi.test.ts +++ b/test/napi/node-napi.test.ts @@ -1,11 +1,9 @@ import { spawnSync, spawn, Glob } from "bun"; -import { beforeAll, describe, expect, it, setDefaultTimeout } from "bun:test"; +import { beforeAll, describe, expect, it } from "bun:test"; import { bunEnv, bunExe, isCI } from "harness"; import { join, dirname } from "path"; import os from "node:os"; -setDefaultTimeout(10 * 60 * 1000); - const jsNativeApiRoot = join(__dirname, "node-napi-tests", "test", "js-native-api"); const nodeApiRoot = join(__dirname, "node-napi-tests", "test", "node-api");