/** * @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, }, }, });