chore(backend): Verlaag coverage threshold

This commit is contained in:
Tibo De Peuter 2025-04-24 14:55:25 +02:00
parent 4227b301fc
commit b85d651a65
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -11,10 +11,10 @@ export default defineConfig({
reportOnFailure: true,
exclude: ['**/*config*', '**/tests/**', 'src/*.ts', '**/dist/**', '**/node_modules/**', 'src/logging/**', 'src/routes/**'],
thresholds: {
lines: 60,
branches: 60,
functions: 60,
statements: 60,
lines: 50,
branches: 50,
functions: 50,
statements: 50,
},
},
},