all repos — website @ 602f249c2cfac0e7b6613fb63f5fb519aa1ca952

My website

Move servers into app.ts and export for testing

Alan Pearce
commit

602f249c2cfac0e7b6613fb63f5fb519aa1ca952

parent

1a7abb3723d6b9db0d199c26d2a207e03636738a

1 file changed, 1 insertion(+), 1 deletion(-)

changed files
M test/index.test.tstest/index.test.ts
@@ -1,7 +1,7 @@
import { type Server } from "bun"; import { expect, test, beforeAll, afterAll } from "bun:test"; -import app from "../src/index"; +import { server as app } from "../src/app"; const port = 33000; const base = `http://localhost:${port}/`;