-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathvitest.config.mts
More file actions
22 lines (21 loc) · 707 Bytes
/
vitest.config.mts
File metadata and controls
22 lines (21 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import react from '@vitejs/plugin-react';
import { loadEnv } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [react(), tsconfigPaths()],
test: {
globals: true, // This is needed by @testing-library to be cleaned up after each test
include: ['src/**/*.test.{js,jsx,ts,tsx}'],
coverage: {
include: ['src/**/*'],
exclude: ['src/**/*.stories.{js,jsx,ts,tsx}', '**/*.d.ts'],
},
environmentMatchGlobs: [
['**/*.test.tsx', 'jsdom'],
['src/hooks/**/*.test.ts', 'jsdom'],
],
setupFiles: ['./vitest-setup.ts'],
env: loadEnv('', process.cwd(), ''),
},
});