-
Notifications
You must be signed in to change notification settings - Fork 41
/
jest.config.js
31 lines (30 loc) · 1.19 KB
/
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
28
29
30
31
const path = require('path');
module.exports = {
transform: {
'^.+\\.(j|t)sx?$': `<rootDir>/jest-preprocess.js`,
},
moduleNameMapper: {
'.+\\.(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>/__mocks__/file-mock.js`,
'^src/(.*)$': '<rootDir>/src/$1',
'^@reach/router(.*)': `<rootDir>/node_modules/@gatsbyjs/reach-router$1`,
},
coveragePathIgnorePatterns: ['src/styles/svg'],
testPathIgnorePatterns: [`node_modules`, `\\.cache`, `<rootDir>.*/public`],
// NOTE: This is a workaround for compilation issues with .d.ts files
transformIgnorePatterns: [
`node_modules/(?!(gatsby|gatsby-script|use-keyboard-shortcut|react-medium-image-zoom|@react-hook/media-query|@mdx-js/react)/)`,
],
globals: {
__PATH_PREFIX__: '/docs',
__BASE_PATH__: '/docs',
},
testEnvironmentOptions: {
url: `http://localhost`,
customExportConditions: [''],
},
setupFiles: ['./jest.polyfills.js', './loadershim.js'],
coverageReporters: ['text'],
setupFilesAfterEnv: ['<rootDir>/setupTests.js'],
testEnvironment: path.join(__dirname, 'jest-environment-patched-jsdom.js'),
};