Skip to content

Commit 088a047

Browse files
authoredNov 12, 2023
fix: default --open to !process.env.CI (#4477)
1 parent b5224ac commit 088a047

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎packages/vitest/src/defaults.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const config = {
8484
api: false,
8585
ui: false,
8686
uiBase: '/__vitest__/',
87-
open: true,
87+
open: !isCI,
8888
css: {
8989
include: [],
9090
},

0 commit comments

Comments
 (0)
Please sign in to comment.