-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathvitest.config.ts
More file actions
37 lines (36 loc) · 818 Bytes
/
vitest.config.ts
File metadata and controls
37 lines (36 loc) · 818 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
29
30
31
32
33
34
35
36
37
import path from 'path';
import { configDefaults, defineConfig } from 'vitest/config';
export default defineConfig(() => {
return {
base: '',
test: {
alias: {
'@': path.resolve(__dirname, './src/'),
},
clearMocks: true,
coverage: {
exclude: [
'src/**/*.stories.tsx',
'src/**/*.snap',
'src/typings/**',
'src/test/**/*',
'src/**/__fixtures__/**',
'tests/**/*',
],
include: ['src/**'],
// TODO: Up this value once we have a chance to increase coverage.
lines: 93,
provider: 'istanbul',
reporters: ['text-summary', 'lcov'],
},
environment: 'jsdom',
environmentOptions: {
jsdom: {
url: 'http://localhost',
},
},
exclude: [...configDefaults.exclude, 'tests/**/*'],
setupFiles: ['./vitest.setup.ts'],
},
};
});