helpyourneighbour/backend/jest.config.js
BibaBot 95a2d85aa3
Some checks are pending
Docker Test / test (push) Waiting to run
chore: Update jest configuration for role middleware tests
2026-03-17 09:07:48 +00:00

18 lines
No EOL
349 B
JavaScript

export default {
testEnvironment: 'node',
transform: {
'^.+\\.js$': 'babel-jest'
},
testMatch: [
'**/tests/**/*.test.js',
'**/__tests__/**/*.js'
],
moduleNameMapper: {
'^src/(.*)$': '<rootDir>/src/$1',
'^backend/(.*)$': '<rootDir>/$1'
},
transformIgnorePatterns: [
'/node_modules/',
'/backend/src/'
]
};