Files
MOHPortal/backend/jest.config.js
ReachableCEO 252775faf3
Some checks failed
CI / Backend Tests (push) Failing after 2m41s
CI / Frontend Tests (push) Successful in 2m14s
CI / Build Docker Images (push) Has been skipped
chore: sync infra docs and coverage
2025-10-16 22:41:22 -05:00

16 lines
393 B
JavaScript

module.exports = {
testEnvironment: 'node',
setupFilesAfterEnv: ['<rootDir>/src/tests/setup.js'],
globalSetup: '<rootDir>/src/tests/globalSetup.js',
globalTeardown: '<rootDir>/src/tests/globalTeardown.js',
coveragePathIgnorePatterns: ['/node_modules/'],
coverageThreshold: {
global: {
statements: 60,
branches: 40,
functions: 55,
lines: 60
}
}
};