-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvitest.config.ts
33 lines (31 loc) · 898 Bytes
/
vitest.config.ts
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
import { resolve } from 'node:path'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vitest/config'
export default defineConfig({
plugins: [react()],
test: {
alias: {
'~': resolve(__dirname, './src'),
},
// coverage: {
// all: false,
// exclude: [
// '__mocks__/**',
// // just ignore the migration code
// // we will use pglite in the future
// // so the coverage of this file is not important
// 'src/database/client/core/db.ts',
// ],
// provider: 'v8',
// reporter: ['text', 'json', 'lcov', 'text-summary'],
// reportsDirectory: './coverage/app',
// },
deps: {
inline: ['vitest-canvas-mock'],
},
environment: 'happy-dom',
exclude: ['**/node_modules/**', '**/dist/**', '**/build/**'],
globals: true,
setupFiles: './test/setup.ts',
},
})