diff options
-rw-r--r-- | test/js/bun/http/bun-server.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/bun/http/bun-server.test.ts b/test/js/bun/http/bun-server.test.ts index 6220b6a54..3e0e4e71e 100644 --- a/test/js/bun/http/bun-server.test.ts +++ b/test/js/bun/http/bun-server.test.ts @@ -1,7 +1,7 @@ import { describe, expect, test } from "bun:test"; describe("Server", () => { - test.only("normlizes incoming request URLs", async () => { + test("normlizes incoming request URLs", async () => { const server = Bun.serve({ fetch(request) { return new Response(request.url, { |