Files
gemini-cli/integration-tests/vitest.config.ts
2026-02-10 07:54:23 +00:00

28 lines
516 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
globalSetup: './globalSetup.ts',
reporters: ['default'],
include: ['**/*.test.ts'],
retry: 2,
fileParallelism: true,
poolOptions: {
threads: {
minThreads: 8,
maxThreads: 16,
},
},
env: {
GEMINI_TEST_TYPE: 'integration',
},
},
});