mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-19 00:02:51 -07:00
22 lines
355 B
TypeScript
22 lines
355 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
reporters: ['default', 'junit'],
|
|
silent: true,
|
|
outputFile: {
|
|
junit: 'junit.xml',
|
|
},
|
|
coverage: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
});
|