diff options
Diffstat (limited to 'test/bun.js/install/bun-install.test.ts')
-rw-r--r-- | test/bun.js/install/bun-install.test.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/bun.js/install/bun-install.test.ts b/test/bun.js/install/bun-install.test.ts index a48b63579..8de41fbc8 100644 --- a/test/bun.js/install/bun-install.test.ts +++ b/test/bun.js/install/bun-install.test.ts @@ -11,6 +11,7 @@ import { bunExe } from "bunExe"; import { mkdir, mkdtemp, readdir, readlink, rm, writeFile } from "fs/promises"; import { join } from "path"; import { tmpdir } from "os"; +import { bunEnv } from "bunEnv"; let handler, package_dir, requested, server; @@ -20,12 +21,7 @@ function resetHanlder() { }; } -const env: any = { - ...process.env, - BUN_DEBUG_QUIET_LOGS: "1", - NO_COLOR: "1", - FORCE_COLOR: undefined, -}; +const env = bunEnv; beforeAll(() => { server = Bun.serve({ |