-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathvitest.config.ts
More file actions
53 lines (49 loc) · 1.37 KB
/
vitest.config.ts
File metadata and controls
53 lines (49 loc) · 1.37 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
import { defineConfig } from 'vitest/config';
const VITEST_SEQUENCE_SEED = Date.now();
console.log('VITEST_SEQUENCE_SEED', VITEST_SEQUENCE_SEED);
// TODO @Shinigami92 2023-12-28: remove when we drop support for Node 14
const [nodeVersionMajor] = process.versions.node.split('.').map(Number);
const excludedTests: string[] = [];
if (nodeVersionMajor < 16) {
excludedTests.push(
'test/scripts/apidoc/module.spec.ts',
'test/scripts/apidoc/signature.spec.ts',
'test/scripts/apidoc/verify-jsdoc-tags.spec.ts'
);
}
// https://vitejs.dev/config/
export default defineConfig({
test: {
setupFiles: ['test/setup.ts'],
coverage: {
all: true,
provider: 'v8',
reporter: ['clover', 'cobertura', 'lcov', 'text'],
include: ['src'],
},
reporters: 'basic',
sequence: {
seed: VITEST_SEQUENCE_SEED,
shuffle: true,
},
// TODO @Shinigami92 2023-12-28: remove the whole `exclude` when we drop support for Node 14
exclude: [
// should be originally `...configDefaults.exclude` from `'vitest/config'`, but esm...
'node_modules',
'dist',
'.idea',
'.git',
'.cache',
...excludedTests,
],
onConsoleLog(log, type) {
if (
type === 'stderr' &&
log.includes('[@faker-js/faker]:') &&
log.includes('deprecated')
) {
return false;
}
},
},
});