From 74f61e2ba295703e989edbe157291f51a6c9816d Mon Sep 17 00:00:00 2001 From: Lilith Date: Sat, 31 Jan 2026 17:52:21 -0800 Subject: [PATCH] =?UTF-8?q?chore(src):=20=E2=99=BB=EF=B8=8F=20Refactor=20r?= =?UTF-8?q?eal-auth=20fixture=20for=20better=20reusability=20and=20maintai?= =?UTF-8?q?nability=20in=20authentication=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- @packages/@testing/e2e-auth/src/real-auth-fixture.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@packages/@testing/e2e-auth/src/real-auth-fixture.ts b/@packages/@testing/e2e-auth/src/real-auth-fixture.ts index ee5fe0f19..890e74a06 100644 --- a/@packages/@testing/e2e-auth/src/real-auth-fixture.ts +++ b/@packages/@testing/e2e-auth/src/real-auth-fixture.ts @@ -28,7 +28,7 @@ import { TEST_ACCOUNTS, type TestAccountRole } from './test-accounts'; const SSO_URL = process.env.SSO_URL || 'http://localhost:4001'; const BASE_URL = process.env.BASE_URL || 'http://localhost'; const REDIS_HOST = process.env.REDIS_HOST || 'sso-redis'; -const REDIS_PORT = process.env.REDIS_PORT || '6379'; +const REDIS_PORT = process.env.REDIS_PORT || '26379'; const SESSION_STORAGE_KEY = 'lilith_session'; const AGE_VERIFIED_KEY = 'lilith-age-verified';