Skip to content

Commit

Permalink
chore: Add coverage thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
clockworkgr committed Jan 30, 2024
1 parent 9812a73 commit 1d5a0dc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ export default defineConfig({
coverage: {
include: ["src/**/*.ts"],
reporter: ["text", "json", "json-summary"],
thresholds: {
lines: 50,
branches: 50,
functions: 50,
statements: 50,
},
},
},
});

0 comments on commit 1d5a0dc

Please sign in to comment.