-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathvitest.config.mts
More file actions
39 lines (37 loc) · 868 Bytes
/
vitest.config.mts
File metadata and controls
39 lines (37 loc) · 868 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
38
39
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: [
'apps/**/*.ts',
'packages/**/*.ts',
'!packages/visualizer',
'!packages/agent-infra/create-new-mcp',
],
provider: 'istanbul',
all: true,
reporter: ['text', 'json', 'html', 'lcov'],
},
reporters: ['default'],
env: {
CONFIG_VAR: 'root',
CONFIG_OVERRIDE: 'root',
},
provide: {
globalConfigValue: true,
},
},
});