Skip to content

Commit

Permalink
Fix coverage thresholds definition
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Dec 11, 2023
1 parent 28aa8f5 commit a7dd37f
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 55 deletions.
102 changes: 51 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ export default defineConfig({
reporter: ['text', 'text-summary', 'clover', 'html'],

// Required code coverage. Lower than this will make the check fail
statements: 95,
branches: 95,
functions: 95,
lines: 95,
thresholds: {
statements: 95,
branches: 95,
functions: 95,
lines: 95,
},
},
},
});

0 comments on commit a7dd37f

Please sign in to comment.