From a933c0c49ea8a2bf33c325443dcc8b7e79b73781 Mon Sep 17 00:00:00 2001 From: Sebastien Ringrose Date: Sat, 2 Mar 2024 17:20:04 +0000 Subject: [PATCH] fix: bun test --- scripts/bun.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bun.ts b/scripts/bun.ts index 45b29088..3cbbc285 100644 --- a/scripts/bun.ts +++ b/scripts/bun.ts @@ -8,6 +8,6 @@ const server = Bun.serve({ }); console.log("Bun server running with Peko router <3"); -console.log(await (await fetch("http://localhost:7777/")).json()); +console.log(await (await fetch("http://localhost:7777/")).text()); server.stop();