-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathvitest.config.ts
More file actions
85 lines (81 loc) · 2.22 KB
/
Copy pathvitest.config.ts
File metadata and controls
85 lines (81 loc) · 2.22 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
import { defineConfig } from 'vitest/config'
import { VitestReporter } from 'tdd-guard-vitest'
import path from 'path'
const root = path.resolve(__dirname)
// Shared test configuration
const baseTestConfig = {
globals: true,
environment: 'node',
testTimeout: 120000,
exclude: ['**/node_modules/**', '**/dist/**', '**/artifacts/**'],
}
// Shared resolve configuration
const baseResolveConfig = {
alias: {
'@testUtils': path.resolve(__dirname, './test/utils/index.ts'),
},
}
export default defineConfig({
test: {
reporters: ['default', new VitestReporter({ projectRoot: root })],
projects: [
{
test: {
...baseTestConfig,
name: 'golangci-lint',
include: ['src/linters/golangci/**/*.test.ts'],
pool: 'forks', // Use forks for tests that need process.chdir
},
resolve: baseResolveConfig,
},
{
test: {
...baseTestConfig,
name: 'unit',
include: ['**/*.test.ts'],
exclude: [
...baseTestConfig.exclude,
'src/linters/golangci/**/*.test.ts', // Handled by golangci-lint project
'**/test/integration/**',
'**/reporters/**',
],
pool: 'threads',
},
resolve: baseResolveConfig,
},
{
test: {
...baseTestConfig,
name: 'integration',
include: ['test/integration/**/*.test.ts'],
pool: 'threads',
},
resolve: baseResolveConfig,
},
{
test: {
...baseTestConfig,
name: 'reporters',
include: ['reporters/**/*.test.ts'],
pool: 'threads',
},
resolve: baseResolveConfig,
},
{
test: {
...baseTestConfig,
name: 'default',
include: ['**/*.test.ts'],
exclude: [
...baseTestConfig.exclude,
'src/linters/golangci/**/*.test.ts', // Handled by golangci-lint project
'**/test/integration/validator.scenarios.test.ts', // Extensive test suite - run separately for faster feedback
],
pool: 'threads',
},
resolve: baseResolveConfig,
},
],
},
resolve: baseResolveConfig,
})