-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.config.ts
More file actions
28 lines (27 loc) · 899 Bytes
/
vitest.config.ts
File metadata and controls
28 lines (27 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import {defineConfig} from 'vitest/config'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
test: {
globals: true,
setupFiles: ['setupTests.ts'],
environment: 'jsdom',
watchIgnore: ['node_modules', 'node_modules/(?!lodash-es)'],
coverage: {
exclude: [
'**/*.d.ts',
'src/constants/**/*',
'src/redux/**/*',
'src/reportWebVitals.ts',
'src/setupTests.ts',
'src/env-config.js',
'src/index.tsx',
'src/**/*.test.{js,ts,tsx}',
],
include: ['src/**/*.{js,ts,tsx}'],
reporter: ['html', 'json-summary', 'text-summary', 'lcov', 'clover'],
reportsDirectory: 'target/test-results/',
},
},
})