1
0

Fix endpoint test

This commit is contained in:
Zef Hemel 2023-09-04 21:14:04 +02:00
parent 5bbd099bdd
commit b936a435ab

View File

@ -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 });