Files
work-club-manager/frontend/vitest.config.ts

20 lines
546 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
globals: true,
setupFiles: ['./src/test/setup.ts'],
include: ['src/**/*.test.{ts,tsx}', 'src/**/__tests__/**/*.{ts,tsx}'],
exclude: ['node_modules', 'dist', '.next', 'e2e/**', 'playwright-report/**', 'test-results/**', '**/*.spec.ts'],
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});