Fix coverage thresholds definition

This commit is contained in:
Alejandro Celaya 2023-12-10 10:45:22 +01:00
parent 482b65e130
commit faf2afdcf3

View file

@ -43,10 +43,12 @@ export default defineConfig({
], ],
// Required code coverage. Lower than this will make the check fail // Required code coverage. Lower than this will make the check fail
statements: 95, thresholds: {
branches: 95, statements: 95,
functions: 90, branches: 95,
lines: 95, functions: 90,
lines: 95,
},
}, },
}, },
}); });