aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/install/bun-install.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/install/bun-install.test.ts')
-rw-r--r--test/bun.js/install/bun-install.test.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/bun.js/install/bun-install.test.ts b/test/bun.js/install/bun-install.test.ts
index d176f5dbe..de9fb5755 100644
--- a/test/bun.js/install/bun-install.test.ts
+++ b/test/bun.js/install/bun-install.test.ts
@@ -8,10 +8,10 @@ import {
it,
} from "bun:test";
import { bunExe } from "bunExe";
+import { bunEnv as env } from "bunEnv";
import { access, 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;
@@ -25,8 +25,6 @@ function resetHanlder() {
handler = () => new Response("Tea Break~", { status: 418 });
}
-const env = bunEnv;
-
beforeAll(() => {
server = Bun.serve({
async fetch(request) {