Files
gemini-cli/packages/a2a-server/vitest.config.ts
T

22 lines
355 B
TypeScript
Raw Normal View History

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
2025-09-18 16:29:40 -07:00
globals: true,
reporters: ['default', 'junit'],
silent: true,
outputFile: {
junit: 'junit.xml',
},
coverage: {
enabled: false,
2025-09-18 16:29:40 -07:00
},
},
});