mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
import {defineConfig} from 'vitest/config';
|
|
|
|
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'],
|
|
},
|
|
});
|