From b936a435abbc3a911aa412cb1c75e4a0eff40596 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Mon, 4 Sep 2023 21:14:04 +0200 Subject: [PATCH] Fix endpoint test --- plugos/hooks/endpoint.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugos/hooks/endpoint.test.ts b/plugos/hooks/endpoint.test.ts index ffb4024..1520e81 100644 --- a/plugos/hooks/endpoint.test.ts +++ b/plugos/hooks/endpoint.test.ts @@ -24,7 +24,7 @@ Deno.test("Run a plugos endpoint server", async () => { const app = new Application(); const port = 3123; - system.addHook(new EndpointHook(app, "/_")); + system.addHook(new EndpointHook(app, "/_/")); const controller = new AbortController(); app.listen({ port: port, signal: controller.signal });