Files
smoothschedule/frontend/vitest.config.ts

43 lines
945 B
TypeScript

import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
setupFiles: ['./src/test/setup.ts'],
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
all: false,
include: ['src/**/*.{ts,tsx}'],
exclude: [
'node_modules/',
'src/test/',
'src/**/__tests__/',
'**/*.d.ts',
'**/*.config.*',
'**/types.ts',
'src/main.tsx',
'src/vite-env.d.ts',
],
thresholds: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: 80,
},
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});