From 10f0d3db31701fe7e2a02196d7bf190e5c646a02 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Thu, 26 Mar 2026 12:18:08 -0400 Subject: [PATCH] test: add cookie secret to express app for auth tests --- server/routes/auth.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/auth.test.ts b/server/routes/auth.test.ts index 68ce0af23..463af9377 100644 --- a/server/routes/auth.test.ts +++ b/server/routes/auth.test.ts @@ -34,7 +34,7 @@ let app: Express; function createApp() { const app = express(); app.use(express.json()); - app.use(cookieParser()); + app.use(cookieParser('SECRET')); app.use( session({ secret: 'test-secret',