Remove c8 coverage reporter (#7006)

This commit is contained in:
Mats Jun
2024-10-24 02:01:33 +09:00
committed by GitHub
parent 9e050befc6
commit 33b2d50b00
3 changed files with 4 additions and 129 deletions

View File

@@ -4,6 +4,10 @@ import {defineConfig} from 'vitest/config';
// eslint-disable-next-line import/no-default-export
export default defineConfig({
test: {
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
},
include: ['test/**/*.ts'],
exclude: ['test/_*.ts', 'test/utils.ts'],
setupFiles: ['/test/_setup-fake-aws.ts', '/test/_setup-log.ts'],