remove useless windows testing files, fix testing?
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 14m1s

This commit is contained in:
2026-01-10 19:29:29 -08:00
parent 5211aadd22
commit 3b69e58de3
7 changed files with 302 additions and 186 deletions

View File

@@ -65,7 +65,10 @@ const finalConfig = mergeConfig(
NODE_ENV: 'test',
BASE_URL: 'https://example.com', // Use a standard domain to pass strict URL validation
FRONTEND_URL: 'https://example.com',
PORT: '3000',
// Use a dedicated test port (3099) to avoid conflicts with production servers
// that might be running on port 3000 or 3001
TEST_PORT: '3099',
VITE_API_BASE_URL: 'http://localhost:3099/api',
},
// This setup script starts the backend server before tests run.
globalSetup: './src/tests/setup/integration-global-setup.ts',