Files
softprops__action-gh-release/vitest.config.ts
T
2026-07-12 21:52:34 -04:00

19 lines
379 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
coverage: {
reporter: ['text', 'json-summary', 'lcov'],
include: ['src/**/*.ts'],
thresholds: {
statements: 88,
branches: 83,
functions: 86,
lines: 88,
},
},
include: ['__tests__/**/*.ts'],
},
});