test: adjust coverage thresholds in Jest configuration

Updated the coverage thresholds in the Jest configuration to 48.6% for lines and 48.4% for functions, reflecting a revised standard for test coverage requirements.
This commit is contained in:
Abdul Rahman
2026-02-11 08:03:09 +05:30
parent 4d8046bc08
commit 51b6effbd2
+2 -2
View File
@@ -63,8 +63,8 @@ const jestConfig = {
coverageThreshold: {
global: {
statements: 49.5,
lines: 49.5,
functions: 49.4,
lines: 48.6,
functions: 48.4,
},
},
collectCoverageFrom: ['<rootDir>/src/**/*.ts'],