1
0
Fork 0
blog/jest.config.js

21 lines
755 B
JavaScript
Raw Normal View History

2019-05-02 21:11:52 +02:00
module.exports = {
transform: {
2019-10-02 13:35:50 +02:00
'^.+\\.tsx?$': '<rootDir>/jest/jest-preprocess.js'
2019-05-02 21:11:52 +02:00
},
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)$':
'<rootDir>/jest/__mocks__/file-mock.js',
'\\.svg': '<rootDir>/jest/__mocks__/svgr-mock.js'
},
testPathIgnorePatterns: ['node_modules', '.cache', 'public', 'coverage'],
transformIgnorePatterns: ['node_modules/(?!(gatsby)/)'],
globals: {
__PATH_PREFIX__: ''
},
testURL: 'http://localhost',
setupFiles: ['<rootDir>/jest/loadershim.js'],
2019-10-02 13:35:50 +02:00
setupFilesAfterEnv: ['<rootDir>/jest/setup-test-env.js'],
collectCoverageFrom: ['src/**/*.{ts,tsx}', '!src/@types/**/*']
2019-05-02 21:11:52 +02:00
}