more api versioning work -whee
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 22m47s

This commit is contained in:
2026-01-28 09:58:28 -08:00
parent 0979a074ad
commit 771f59d009
15 changed files with 184 additions and 155 deletions

View File

@@ -32,7 +32,8 @@ const e2eConfig = mergeConfig(
FRONTEND_URL: 'https://example.com',
// Use port 3098 for E2E tests (integration uses 3099)
TEST_PORT: '3098',
VITE_API_BASE_URL: 'http://localhost:3098/api',
// ADR-008: API versioning - all routes use /api/v1 prefix
VITE_API_BASE_URL: 'http://localhost:3098/api/v1',
},
// E2E tests have their own dedicated global setup file
globalSetup: './src/tests/setup/e2e-global-setup.ts',