-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest.config.mts
158 lines (155 loc) · 4.49 KB
/
vitest.config.mts
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/**
* @file Configuration - Vitest
* @module config/vitest
* @see https://vitest.dev/config
*/
import tsconfigPaths from '#tests/plugins/tsconfig-paths'
import Notifier from '#tests/reporters/notifier'
import VerboseReporter from '#tests/reporters/verbose'
import pathe from '@flex-development/pathe'
import ci from 'is-ci'
import type { ConfigEnv, ViteUserConfig } from 'vitest/config'
import { BaseSequencer, type TestSpecification } from 'vitest/node'
import tsconfig from './tsconfig.test.json' with { type: 'json' }
/**
* Create a vitest configuration.
*
* @see {@linkcode ConfigEnv}
* @see {@linkcode ViteUserConfig}
*
* @param {ConfigEnv} env
* Configuration environment
* @return {ViteUserConfig}
* Vitest configuration object
*/
function config(env: ConfigEnv): ViteUserConfig {
return {
plugins: [tsconfigPaths({ tsconfig: 'tsconfig.test.json' })],
ssr: {
resolve: { conditions: tsconfig.compilerOptions.customConditions }
},
test: {
allowOnly: !ci,
chaiConfig: {
includeStack: true,
showDiff: true,
truncateThreshold: 0
},
clearMocks: true,
coverage: {
all: true,
clean: true,
cleanOnRerun: true,
exclude: [
'**/*.d.mts',
'**/__mocks__/',
'**/__tests__/',
'**/interfaces/',
'**/types/',
'**/index.mts',
'!src/index.mts',
'src/internal/*.browser.mts'
],
extension: ['.mts'],
include: ['src'],
provider: 'v8',
reportOnFailure: !ci,
reporter: env.mode === 'reports'
? ['text']
: [ci ? 'lcovonly' : 'html', 'json-summary', 'text'],
reportsDirectory: './coverage',
skipFull: false,
thresholds: { 100: true, perFile: true }
},
environment: 'node',
environmentOptions: {},
globalSetup: [],
globals: true,
include: ['src/**/__tests__/*.spec.mts'],
mockReset: true,
outputFile: {
blob: `.vitest-reports/${env.mode}.blob.json`,
json: pathe.join('__tests__', 'reports', env.mode + '.json')
},
passWithNoTests: true,
reporters: JSON.parse(process.env['VITEST_UI'] ?? '0')
? [new Notifier(), new VerboseReporter()]
: env.mode === 'reports'
? [new VerboseReporter()]
: [
ci ? 'github-actions' : new Notifier(),
'blob',
'json',
new VerboseReporter()
],
/**
* Stores snapshots next to `file`'s directory.
*
* @param {string} file
* Path to test file
* @param {string} extension
* Snapshot extension
* @return {string}
* Custom snapshot path
*/
resolveSnapshotPath(file: string, extension: string): string {
return pathe.resolve(
pathe.resolve(pathe.dirname(pathe.dirname(file)), '__snapshots__'),
pathe.basename(file).replace(/\.spec.mts/, '') + extension
)
},
restoreMocks: true,
sequence: {
/**
* Sorting and sharding algorithm provider.
*
* @see {@linkcode BaseSequencer}
*
* @extends {BaseSequencer}
*/
sequencer: class Sequencer extends BaseSequencer {
/**
* Determine test file execution order.
*
* @public
* @override
* @async
*
* @param {TestSpecification[]} specs
* Workspace spec objects
* @return {Promise<TestSpecification[]>}
* Sorted `specs`
*/
public override async sort(
specs: TestSpecification[]
): Promise<TestSpecification[]> {
return new Promise(resolve => {
return void resolve(specs.sort((a, b) => {
return a.moduleId.localeCompare(b.moduleId)
}))
})
}
}
},
setupFiles: ['./__tests__/setup/chai.mts', './__tests__/setup/faker.mts'],
snapshotFormat: {
callToJSON: true,
min: false,
printBasicPrototype: false,
printFunctionName: true
},
snapshotSerializers: ['./__tests__/serializers/cwd.mts'],
typecheck: {
allowJs: false,
checker: 'tsc',
ignoreSourceErrors: false,
include: ['**/__tests__/*.spec-d.mts'],
only: true,
tsconfig: 'tsconfig.typecheck.json'
},
unstubEnvs: true,
unstubGlobals: true
}
}
}
export default config