all repos — homestead @ a95e2842c84b9dba1b2b78cb184139d080f8b5a9

Code for my website

Move servers into app.ts and export for testing

Alan Pearce
commit

a95e2842c84b9dba1b2b78cb184139d080f8b5a9

parent

9953b0ec17819f745605f61ad6af258195da034a

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}/`;