Files
gemini-cli/evals/vitest.config.ts

19 lines
353 B
TypeScript
Raw Normal View History

2026-01-14 04:49:17 +00:00
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
testTimeout: 300000, // 5 minutes
2026-01-14 07:08:05 +00:00
reporters: ['default', 'json'],
outputFile: {
json: 'evals/logs/report.json',
},
2026-01-14 04:49:17 +00:00
include: ['**/*.eval.ts'],
},
});