Files
gridpilot.gg/vitest.config.ts

35 lines
822 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/**/*.test.ts'],
exclude: ['tests/e2e/**/*'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'tests/',
'**/*.d.ts',
'**/*.config.*',
'**/dist/**',
],
},
// Longer timeout for integration tests
testTimeout: 30000,
},
});
// Separate E2E config - used when running test:e2e script
export const e2eConfig = defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/e2e/**/*.e2e.test.ts'],
// E2E tests need longer timeouts due to browser operations
testTimeout: 120000,
hookTimeout: 60000,
},
});