Files
action-gh-release/vitest.config.ts
T

19 lines
379 B
TypeScript
Raw Normal View History

2025-06-09 20:59:28 -04:00
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,
},
2025-06-09 20:59:28 -04:00
},
include: ['__tests__/**/*.ts'],
},
});