diff options
| author | 2023-03-15 16:47:08 -0700 | |
|---|---|---|
| committer | 2023-03-15 16:47:08 -0700 | |
| commit | babbfc640416ce7ac5cc6c909f543f45b3d6c22d (patch) | |
| tree | d752bc03be993ddb474fe1035fde5fb6bc1e5132 | |
| parent | 86891a5d122d5c41e146853b71cd5fad7a95b390 (diff) | |
| download | bun-babbfc640416ce7ac5cc6c909f543f45b3d6c22d.tar.gz bun-babbfc640416ce7ac5cc6c909f543f45b3d6c22d.tar.zst bun-babbfc640416ce7ac5cc6c909f543f45b3d6c22d.zip | |
fix fixture
| -rw-r--r-- | test/js/node/http/node-http.fixme.ts | 4 |
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) => { |
