diff options
| -rw-r--r-- | vitest.config.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vitest.config.ts b/vitest.config.ts index bb0057ca..1dda2df9 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -17,7 +17,9 @@ export default defineConfig({ reporter: ['clover', 'cobertura', 'lcov', 'text'], include: ['src'], }, - reporters: CI_PREFLIGHT ? ['default', 'github-actions'] : ['default'], + reporters: CI_PREFLIGHT + ? ['default', 'github-actions'] + : [['default', { summary: false }]], sequence: { seed: VITEST_SEQUENCE_SEED, shuffle: true, |
