module.exports = { moduleFileExtensions: ['js', 'json'], transform: { '^.+\\.js$': 'babel-jest' }, moduleNameMapper: { '^@/(.*)$': '/$1' }, testEnvironment: 'node', testMatch: ['**/__tests__/**/*.test.js', '**/__tests__/**/*.spec.js'], setupFiles: ['/__tests__/setup.js'], collectCoverageFrom: [ 'utils/**/*.js', 'store/**/*.js', 'config.js' ] }