Files
gemini-cli/evals/vitest.config.ts
2026-01-14 04:49:17 +00:00

16 lines
282 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'],
include: ['**/*.eval.ts'],
},
});