mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 14:57:22 +03:00
Fix coverage thresholds definition
This commit is contained in:
parent
482b65e130
commit
faf2afdcf3
1 changed files with 6 additions and 4 deletions
|
@ -43,10 +43,12 @@ export default defineConfig({
|
|||
],
|
||||
|
||||
// Required code coverage. Lower than this will make the check fail
|
||||
statements: 95,
|
||||
branches: 95,
|
||||
functions: 90,
|
||||
lines: 95,
|
||||
thresholds: {
|
||||
statements: 95,
|
||||
branches: 95,
|
||||
functions: 90,
|
||||
lines: 95,
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue