helpyourneighbour/backend/jest.config.js
BibaBot f0a9084d59
Some checks are pending
Docker Test / test (push) Waiting to run
Add unit tests for role-based access control
2026-03-17 11:07:20 +00:00

12 lines
No EOL
221 B
JavaScript

export default {
testEnvironment: 'node',
testMatch: [
'**/tests/**/*.test.js'
],
collectCoverageFrom: [
'src/**/*.js',
'!src/__tests__/**/*.js'
],
coverageDirectory: 'coverage',
verbose: true
};