(url: string)
| 7 | import * as HttpServerResponse from "effect/unstable/http/HttpServerResponse" |
| 8 | |
| 9 | const fetchText = (url: string) => |
| 10 | Effect.promise(() => fetch(url, { headers: { connection: "close" } }).then((response) => response.text())) |
| 11 | |
| 12 | describe("BunHttpServer", () => { |
| 13 | it.effect("closing an older serve scope keeps the newer handler active", () => |
no test coverage detected