File tree 1 file changed +0
-21
lines changed
1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,6 @@ const VITEST_SEQUENCE_SEED = Date.now();
5
5
6
6
console . log ( 'VITEST_SEQUENCE_SEED' , VITEST_SEQUENCE_SEED ) ;
7
7
8
- // TODO @Shinigami 92 2023-12-28: remove when we drop support for Node 14
9
- const [ nodeVersionMajor ] = process . versions . node . split ( '.' ) . map ( Number ) ;
10
- const excludedTests : string [ ] = [ ] ;
11
- if ( nodeVersionMajor < 16 ) {
12
- excludedTests . push (
13
- 'test/scripts/apidoc/module.spec.ts' ,
14
- 'test/scripts/apidoc/signature.spec.ts' ,
15
- 'test/scripts/apidoc/verify-jsdoc-tags.spec.ts'
16
- ) ;
17
- }
18
-
19
8
// https://vitejs.dev/config/
20
9
export default defineConfig ( {
21
10
test : {
@@ -31,16 +20,6 @@ export default defineConfig({
31
20
seed : VITEST_SEQUENCE_SEED ,
32
21
shuffle : true ,
33
22
} ,
34
- // TODO @Shinigami 92 2023-12-28: remove the whole `exclude` when we drop support for Node 14
35
- exclude : [
36
- // should be originally `...configDefaults.exclude` from `'vitest/config'`, but esm...
37
- 'node_modules' ,
38
- 'dist' ,
39
- '.idea' ,
40
- '.git' ,
41
- '.cache' ,
42
- ...excludedTests ,
43
- ] ,
44
23
onConsoleLog ( log , type ) {
45
24
if (
46
25
type === 'stderr' &&
You can’t perform that action at this time.
0 commit comments