mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 14:10:37 -07:00
24 lines
390 B
TypeScript
24 lines
390 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'],
|
||
|
|
silent: true,
|
||
|
|
outputFile: {
|
||
|
|
junit: 'junit.xml',
|
||
|
|
},
|
||
|
|
poolOptions: {
|
||
|
|
threads: {
|
||
|
|
minThreads: 8,
|
||
|
|
maxThreads: 16,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|