Skip to content

Commit

Permalink
chore: reduce thresholds for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
fratzinger committed Jan 16, 2024
1 parent b1b1b06 commit 980a2d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export default defineConfig({
include: ["src/**/*.{js,ts}"],
exclude: ["**/*.test.{js,ts}", "src/types.ts"],
thresholds: {
lines: 90,
functions: 90,
branches: 90,
statements: 90,
lines: 85,
functions: 85,
branches: 85,
statements: 85,
}
},
},
Expand Down

0 comments on commit 980a2d1

Please sign in to comment.