Aggregate test results. (#16581)

This commit is contained in:
Christian Gunderman
2026-01-14 07:08:05 +00:00
committed by GitHub
parent 8030404b08
commit 66e7b479ae
6 changed files with 295 additions and 9 deletions
+4 -1
View File
@@ -9,7 +9,10 @@ import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
testTimeout: 300000, // 5 minutes
reporters: ['default'],
reporters: ['default', 'json'],
outputFile: {
json: 'evals/logs/report.json',
},
include: ['**/*.eval.ts'],
},
});