more test improvements
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 29m49s

This commit is contained in:
2026-01-03 13:47:39 -08:00
parent 208227b3ed
commit 4f607f7d2f
2 changed files with 14 additions and 1 deletions

View File

@@ -44,10 +44,17 @@ const finalConfig = mergeConfig(
// Otherwise, the inherited `exclude` rule will prevent any integration tests from running.
// Setting it to an empty array removes all exclusion rules for this project.
exclude: [],
// Fix: Set environment variables to ensure generated URLs pass validation
env: {
NODE_ENV: 'test',
BASE_URL: 'http://example.com', // Use a standard domain to pass strict URL validation
PORT: '3000',
},
// This setup script starts the backend server before tests run.
globalSetup: './src/tests/setup/integration-global-setup.ts',
// The default timeout is 5000ms (5 seconds)
testTimeout: 60000, // Increased timeout for server startup and API calls, especially AI services.
hookTimeout: 60000,
// "singleThread: true" is removed in modern Vitest.
// Use fileParallelism: false to ensure test files run one by one to prevent port conflicts.
fileParallelism: false,