2019-04-14 03:29:35 +02:00
|
|
|
module.exports = {
|
2021-02-06 14:40:39 +01:00
|
|
|
rootDir: '../',
|
2019-04-14 03:29:35 +02:00
|
|
|
moduleNameMapper: {
|
|
|
|
'.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy',
|
2019-04-14 19:00:14 +02:00
|
|
|
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
|
2021-02-06 14:40:39 +01:00
|
|
|
'<rootDir>/tests/__mocks__/file-mock.js',
|
|
|
|
'\\.svg': '<rootDir>/tests/__mocks__/svgr-mock.js'
|
2019-04-14 03:29:35 +02:00
|
|
|
},
|
2020-04-03 11:57:15 +02:00
|
|
|
testPathIgnorePatterns: [
|
|
|
|
'node_modules',
|
|
|
|
'\\.cache',
|
|
|
|
'<rootDir>.*/public',
|
|
|
|
'coverage'
|
|
|
|
],
|
2019-04-14 03:29:35 +02:00
|
|
|
transformIgnorePatterns: ['node_modules/(?!(gatsby)/)'],
|
|
|
|
globals: {
|
|
|
|
__PATH_PREFIX__: ''
|
|
|
|
},
|
2021-02-06 14:40:39 +01:00
|
|
|
setupFiles: ['<rootDir>/tests/loadershim.js'],
|
|
|
|
setupFilesAfterEnv: ['<rootDir>/tests/setup-test-env.js']
|
2019-04-14 03:29:35 +02:00
|
|
|
}
|