File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
dev-packages/node-integration-tests Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { defineConfig } from 'vitest/config';
3
3
export default defineConfig ( {
4
4
test : {
5
5
include : [ './suites/**/test.ts' ] ,
6
- // Ensure we can see debug output when DEBUT =true
6
+ // Ensure we can see debug output when DEBUG =true
7
7
disableConsoleIntercept : true ,
8
8
silent : false ,
9
9
// By default Vitest uses child processes to run tests but all our tests
@@ -12,6 +12,8 @@ export default defineConfig({
12
12
pool : 'threads' ,
13
13
reporters : process . env . DEBUG
14
14
? [ 'default' , { summary : false } ]
15
- : process . env . GITHUB_ACTIONS ? [ 'dot' , 'github-actions' ] : [ 'verbose' ] ,
15
+ : process . env . GITHUB_ACTIONS
16
+ ? [ 'dot' , 'github-actions' ]
17
+ : [ 'verbose' ] ,
16
18
} ,
17
19
} ) ;
You can’t perform that action at this time.
0 commit comments