app/jest.config.js
module.exports = {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: ['src/**/*.js', '!frontend/**/*.*'],
moduleFileExtensions: ['js', 'json'],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1'
},
testMatch: [
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
],
testPathIgnorePatterns: ['frontend'],
testEnvironmentOptions: {
url: 'http://localhost/'
}
};