helpyourneighbour/backend/jest.config.js

14 lines
273 B
JavaScript
Raw Normal View History

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