-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvitest.config.ts
More file actions
102 lines (92 loc) · 2.49 KB
/
vitest.config.ts
File metadata and controls
102 lines (92 loc) · 2.49 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
test: {
// Test environment
environment: 'node',
// Global test APIs (no import needed)
globals: true,
// Setup files
setupFiles: ['./tests/setup.ts'],
// Coverage configuration
coverage: {
provider: 'v8',
reporter: ['text', 'text-summary', 'lcov'],
thresholds: {
statements: 80,
branches: 70,
functions: 80,
lines: 80,
},
exclude: [
'node_modules/**',
'dist/**',
'tests/**',
'**/*.d.ts',
'**/*.test.ts',
'scripts/**',
],
},
// Timeout - Higher for CI environments to handle slower systems
testTimeout: process.env.VITEST_TEST_TIMEOUT
? parseInt(process.env.VITEST_TEST_TIMEOUT)
: process.env.CI
? 30000
: 15000,
retry: 0,
// File-level parallelism for faster test execution
fileParallelism: true,
// Reporter
reporters: process.env.CI ? ['default', 'json'] : ['default'],
projects: [
{
extends: true,
test: {
include: ['tests/unit/**/*.test.ts', 'tests/integration/**/*.test.ts'],
pool: 'threads',
},
},
{
extends: true,
test: {
include: ['tests/e2e/**/*.test.ts'],
pool: 'forks',
maxWorkers: 1,
},
},
{
extends: true,
test: {
include: ['tests/golden/**/*.test.ts'],
pool: 'threads',
},
},
{
test: {
name: 'web',
include: ['src/web/src/**/*.test.{ts,tsx}'],
environment: 'jsdom',
globals: true,
setupFiles: ['src/web/src/test-setup.ts'],
},
resolve: {
alias: { '@': new URL('src/web/src', import.meta.url).pathname },
},
},
],
},
// Path resolution (matches tsconfig paths)
resolve: {
alias: {
'@core': path.resolve(__dirname, './src/core'),
'@types': path.resolve(__dirname, './src/types.ts'),
'@extensions': path.resolve(__dirname, './src/extensions'),
'@cli': path.resolve(__dirname, './src/cli'),
'@lib': path.resolve(__dirname, './src/lib'),
'@constants': path.resolve(__dirname, './src/constants'),
'@errors': path.resolve(__dirname, './src/errors'),
'@utils': path.resolve(__dirname, './src/utils'),
'@plugins': path.resolve(__dirname, './src/plugins'),
},
},
});