aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-03-15 16:47:08 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-03-15 16:47:08 -0700
commitbabbfc640416ce7ac5cc6c909f543f45b3d6c22d (patch)
treed752bc03be993ddb474fe1035fde5fb6bc1e5132
parent86891a5d122d5c41e146853b71cd5fad7a95b390 (diff)
downloadbun-babbfc640416ce7ac5cc6c909f543f45b3d6c22d.tar.gz
bun-babbfc640416ce7ac5cc6c909f543f45b3d6c22d.tar.zst
bun-babbfc640416ce7ac5cc6c909f543f45b3d6c22d.zip
fix fixture
-rw-r--r--test/js/node/http/node-http.fixme.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/js/node/http/node-http.fixme.ts b/test/js/node/http/node-http.fixme.ts
index d47002a6f..6b01f66c3 100644
--- a/test/js/node/http/node-http.fixme.ts
+++ b/test/js/node/http/node-http.fixme.ts
@@ -1,6 +1,6 @@
-import { describe, expect, it, beforeAll, afterAll } from "bun:test";
import { createServer, request, get, Agent, globalAgent, Server } from "node:http";
-import { createDoneDotAll } from "node-harness";
+import { createTest } from "node-harness";
+const { describe, expect, it, beforeAll, afterAll, createDoneDotAll } = createTest(import.meta.path);
function listen(server: any): Promise<URL> {
return new Promise((resolve, reject) => {