mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-18 07:43:00 -07:00
25 lines
442 B
TypeScript
25 lines
442 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
reporters: ['default', 'junit'],
|
|
testTimeout: 60000,
|
|
hookTimeout: 60000,
|
|
pool: 'threads',
|
|
silent: true,
|
|
setupFiles: ['./test-setup.ts'],
|
|
outputFile: {
|
|
junit: 'junit.xml',
|
|
},
|
|
coverage: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
});
|