mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-12 19:51:14 +00:00
21 lines
No EOL
438 B
TypeScript
21 lines
No EOL
438 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
clearMocks: true,
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['json', 'lcov', 'text', 'clover'],
|
|
exclude: ['/node_modules/'],
|
|
},
|
|
environment: 'node',
|
|
include: ['**/__tests__/**/*.test.ts'],
|
|
globals: true,
|
|
testTimeout: 10000,
|
|
poolOptions: {
|
|
threads: {
|
|
maxThreads: 10,
|
|
},
|
|
},
|
|
},
|
|
});
|