module.exports = { rootDir: '../../', transform: { '^.+\\.[jt]sx?$': ['babel-jest', { configFile: './jest/babel.config.js' }] }, moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx', 'node', 'md'], moduleNameMapper: { '.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy', '.+\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|md)$': '/tests/unit/__mocks__/fileMock.js', '\\.svg': '/tests/unit/__mocks__/svgrMock.js', 'next/router': '/tests/unit/__mocks__/nextRouter.js' }, testPathIgnorePatterns: ['node_modules', '.cache', 'public', 'coverage'], transformIgnorePatterns: ['node_modules/(?!(gatsby)/)'], globals: { __PATH_PREFIX__: '' }, setupFiles: ['/tests/unit/loadershim.js'], setupFilesAfterEnv: ['/tests/unit/setupTests.ts'], collectCoverageFrom: [ '/src/**/*.{ts,tsx}', '!/src/@types/**/*', '!/src/**/*.stories.{ts,tsx}' ], collectCoverage: true }