-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
27 lines (27 loc) · 938 Bytes
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module.exports = {
transform: {
'^.+\\.jsx?$': `<rootDir>/jest/jest-preprocess.js`,
},
moduleDirectories: ['node_modules', 'jest/utils'],
moduleNameMapper: {
'^@components(.*)$': '<rootDir>/src/components$1',
'^@styles(.*)$': '<rootDir>/src/styles$1',
'^@types(.*)$': '<rootDir>/src/types$1',
'^@hooks(.*)$': '<rootDir>/src/hooks$1',
'^config(.*)$': '<rootDir>/config$1',
'.+\\.(css|styl|less|sass|scss)$': `identity-obj-proxy`,
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': `<rootDir>/jest/__mocks__/file-mock.js`,
},
testPathIgnorePatterns: [
`node_modules`,
`\\.cache`,
`<rootDir>.*/public`,
'<rootDir>.*/cypress',
],
transformIgnorePatterns: [`node_modules/(?!(gatsby)/)`],
globals: {
__PATH_PREFIX__: ``,
},
setupFiles: [`<rootDir>/jest/loadershim.js`],
setupFilesAfterEnv: [`<rootDir>/jest/setup-test-env.js`],
}