chore: sync infra docs and coverage
This commit is contained in:
15
backend/jest.config.js
Normal file
15
backend/jest.config.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user