mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['tests/reporters.spec.ts'],
|
|
reporters: ['pkg-reporter', 'vitest-sonar-reporter'],
|
|
outputFile: './sonar-config.xml',
|
|
},
|
|
})
|