Set slice=true on tests to supress output. (#1168)

This commit is contained in:
Tommaso Sciortino
2025-06-19 15:27:00 -07:00
committed by GitHub
parent c1486c47ee
commit 1e5689e054
2 changed files with 2 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ export default defineConfig({
environment: 'jsdom',
globals: true,
reporters: ['default', 'junit'],
silent: true,
outputFile: {
junit: 'junit.xml',
},

View File

@@ -9,6 +9,7 @@ import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
reporters: ['default', 'junit'],
silent: true,
outputFile: {
junit: 'junit.xml',
},