diff options
| author | Shinigami <[email protected]> | 2025-02-12 20:42:52 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-02-12 19:42:52 +0000 |
| commit | 7c749b6049f675131059ffaf3ba65770df4614bf (patch) | |
| tree | 881c676a98d93fc5163eeb485495d54b17d64b80 | |
| parent | e28273f14af87f52fe1e1a430bc357f9545c0fca (diff) | |
| download | faker-7c749b6049f675131059ffaf3ba65770df4614bf.tar.xz faker-7c749b6049f675131059ffaf3ba65770df4614bf.zip | |
test: disable summary for local (#3394)
| -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, |
