portfolio/tests/jest.config.js

27 lines
844 B
JavaScript
Raw Normal View History

2019-04-14 03:29:35 +02:00
module.exports = {
2021-02-06 14:40:39 +01:00
rootDir: '../',
2021-03-13 17:46:54 +01:00
transform: {
'^.+\\.[jt]sx?$': ['babel-jest', { configFile: './tests/babel.config.js' }]
},
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',
2021-03-13 01:33:13 +01:00
'\\.svg': '<rootDir>/tests/__mocks__/svgr-mock.js',
2022-05-08 15:14:12 +02:00
'^@reach/router(.*)': '<rootDir>/node_modules/@gatsbyjs/reach-router$1'
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'],
2021-08-28 13:05:02 +02:00
setupFilesAfterEnv: ['<rootDir>/tests/setup-test-env.js'],
testEnvironment: 'jsdom'
2019-04-14 03:29:35 +02:00
}