2020-05-07 08:03:30 +02:00
|
|
|
module.exports = {
|
|
|
|
rootDir: '../../',
|
2020-06-30 11:28:49 +02:00
|
|
|
transform: {
|
|
|
|
'^.+\\.[jt]sx?$': ['babel-jest', { configFile: './jest/babel.config.js' }]
|
2020-05-07 08:03:30 +02:00
|
|
|
},
|
|
|
|
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)$':
|
|
|
|
'<rootDir>/tests/unit/__mocks__/fileMock.js',
|
|
|
|
'\\.svg': '<rootDir>/tests/unit/__mocks__/svgrMock.js',
|
|
|
|
'next/router': '<rootDir>/tests/unit/__mocks__/nextRouter.js'
|
|
|
|
},
|
2020-06-30 11:28:49 +02:00
|
|
|
testPathIgnorePatterns: ['node_modules', '.cache', 'public', 'coverage'],
|
|
|
|
transformIgnorePatterns: ['node_modules/(?!(gatsby)/)'],
|
|
|
|
globals: {
|
|
|
|
__PATH_PREFIX__: ''
|
|
|
|
},
|
|
|
|
setupFiles: ['<rootDir>/tests/unit/loadershim.js'],
|
|
|
|
setupFilesAfterEnv: ['<rootDir>/tests/unit/setupTests.ts'],
|
2020-05-07 08:03:30 +02:00
|
|
|
collectCoverageFrom: [
|
|
|
|
'<rootDir>/src/**/*.{ts,tsx}',
|
|
|
|
'!<rootDir>/src/@types/**/*',
|
|
|
|
'!<rootDir>/src/**/*.stories.{ts,tsx}'
|
|
|
|
],
|
|
|
|
collectCoverage: true
|
|
|
|
}
|