mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-02-01 22:48:03 +00:00
19 lines
353 B
TypeScript
19 lines
353 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 300000, // 5 minutes
|
|
reporters: ['default', 'json'],
|
|
outputFile: {
|
|
json: 'evals/logs/report.json',
|
|
},
|
|
include: ['**/*.eval.ts'],
|
|
},
|
|
});
|