-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.config.mts
More file actions
34 lines (32 loc) · 786 Bytes
/
vitest.config.mts
File metadata and controls
34 lines (32 loc) · 786 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
import { defineConfig } from 'vitest/config';
function cwdPlugin(name) {
return {
name: `vitest:test:workspace-${name}`,
configResolved() {
process.env[`${name}_CWD_CONFIG`] = process.cwd();
},
configureServer() {
process.env[`${name}_CWD_SERVER`] = process.cwd();
},
};
}
export default defineConfig({
envPrefix: ['VITE_', 'CUSTOM_', 'ROOT_'],
plugins: [cwdPlugin('ROOT')],
test: {
coverage: {
include: ['src/**/*.ts', 'packages/**/*.ts', '!packages/visualizer'],
provider: 'istanbul',
all: true,
reporter: ['text', 'json', 'html', 'lcov'],
},
reporters: ['default'],
env: {
CONFIG_VAR: 'root',
CONFIG_OVERRIDE: 'root',
},
provide: {
globalConfigValue: true,
},
},
});