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', environment: 'jsdom',
globals: true, globals: true,
reporters: ['default', 'junit'], reporters: ['default', 'junit'],
silent: true,
outputFile: { outputFile: {
junit: 'junit.xml', junit: 'junit.xml',
}, },

View File

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