upload file size limit increased in server.ts
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 1m7s

This commit is contained in:
2025-11-22 23:32:22 -08:00
parent 34528bc760
commit d4d1857a04

View File

@@ -18,7 +18,9 @@ export default defineConfig({
test: {
name: 'integration',
environment: 'node',
include: ['**/*.integration.test.ts'],
// The path must be specific. By default, Vitest doesn't look in `src`
// unless the pattern explicitly includes it.
include: ['src/**/*.integration.test.ts'],
// This setup script starts the backend server before tests run.
globalSetup: './src/tests/setup/integration-global-setup.ts',
testTimeout: 15000, // Increased timeout for server startup and API calls.