module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', moduleNameMapper: { '\\.(css|less|scss|sass)$': 'identity-obj-proxy', '\\.(jpg|jpeg|png|gif|webp|svg)$': '/__mocks__/fileMock.js' }, setupFilesAfterEnv: ['/jest.setup.js'], testMatch: [ '/**/*.test.tsx', '/**/*_test.tsx' // Added this to match your file naming ], moduleDirectories: ['node_modules'], testPathIgnorePatterns: ['/node_modules/'], transform: { '^.+\\.(ts|tsx)$': 'ts-jest' } }