Skip to content

Commit

Permalink
test: lower thresholds
Browse files Browse the repository at this point in the history
Adding code inside of baseTypes.ts requires us to lower the coverage
thresholds as it's notoriously difficult to test.
  • Loading branch information
pheuberger committed Feb 7, 2025
1 parent 8206cbb commit 6af04d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export default defineConfig({
// If you want a coverage reports even if your tests are failing, include the reportOnFailure option
reportOnFailure: true,
thresholds: {
lines: 25,
lines: 24,
branches: 72,
functions: 61,
statements: 25,
functions: 59,
statements: 24,
},
include: ["src/**/*.ts"],
exclude: [
Expand Down

0 comments on commit 6af04d5

Please sign in to comment.