35 lines
698 B
TypeScript
35 lines
698 B
TypeScript
|
|
/**
|
||
|
|
* Vitest Configuration (Alternative to Jest)
|
||
|
|
*/
|
||
|
|
|
||
|
|
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/setupTests.ts'],
|
||
|
|
coverage: {
|
||
|
|
provider: 'v8',
|
||
|
|
reporter: ['text', 'json', 'html'],
|
||
|
|
exclude: [
|
||
|
|
'node_modules/',
|
||
|
|
'src/setupTests.ts',
|
||
|
|
'**/*.d.ts',
|
||
|
|
'**/*.config.*',
|
||
|
|
'**/mockData',
|
||
|
|
'**/*.test.{ts,tsx}',
|
||
|
|
'**/__tests__/**',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@': path.resolve(__dirname, './src'),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|