Skip to content

Commit

Permalink
Add back test coverage thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Sep 7, 2023
1 parent f8f68e8 commit f6be8fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ export default defineConfig({
clearMocks: true,
coverage: {
all: true,
exclude: ['lib'],
branches: 100,
exclude: ['lib', 'src/*.d.ts', 'src/index.ts'],
functions: 100,
include: ['src'],
lines: 100,
reporter: ['html', 'lcov'],
statements: 100,
},
exclude: ['lib', 'node_modules'],
setupFiles: ['console-fail-test/setup'],
Expand Down

0 comments on commit f6be8fa

Please sign in to comment.