Skip to content

Commit 7c749b6

Browse files
authored
test: disable summary for local (#3394)
1 parent e28273f commit 7c749b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vitest.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ export default defineConfig({
1717
reporter: ['clover', 'cobertura', 'lcov', 'text'],
1818
include: ['src'],
1919
},
20-
reporters: CI_PREFLIGHT ? ['default', 'github-actions'] : ['default'],
20+
reporters: CI_PREFLIGHT
21+
? ['default', 'github-actions']
22+
: [['default', { summary: false }]],
2123
sequence: {
2224
seed: VITEST_SEQUENCE_SEED,
2325
shuffle: true,

0 commit comments

Comments
 (0)