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, reportOnFailure: true,
exclude: ['**/*config*', '**/tests/**', 'src/*.ts', '**/dist/**', '**/node_modules/**', 'src/logging/**', 'src/routes/**'], exclude: ['**/*config*', '**/tests/**', 'src/*.ts', '**/dist/**', '**/node_modules/**', 'src/logging/**', 'src/routes/**'],
thresholds: { thresholds: {
lines: 60, lines: 50,
branches: 60, branches: 50,
functions: 60, functions: 50,
statements: 60, statements: 50,
}, },
}, },
}, },