-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
32 lines (31 loc) · 1008 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
28
29
30
31
32
'use strict';
module.exports = {
restoreMocks: true,
resetMocks: true,
testEnvironment: 'node',
testRunner: 'jest-circus/runner',
// ? 1 hour so MMS and other tools don't choke during debugging
testTimeout: 60000,
verbose: false,
testPathIgnorePatterns: ['/node_modules/'],
// ! If changed, also update these aliases in tsconfig.json,
// ! webpack.config.js, next.config.ts, and .eslintrc.js
moduleNameMapper: {
'^universe/(.*)$': '<rootDir>/src/$1',
'^multiverse/(.*)$': '<rootDir>/lib/$1',
'^testverse/(.*)$': '<rootDir>/test/$1',
'^externals/(.*)$': '<rootDir>/external-scripts/$1',
'^types/(.*)$': '<rootDir>/types/$1',
'^package$': '<rootDir>/package.json'
},
setupFilesAfterEnv: ['./test/setup.ts'],
collectCoverageFrom: ['src/**/*.ts?(x)', 'external-scripts/**/*.ts?(x)'],
transformIgnorePatterns: [
`/node_modules/(?!${[
'node-fetch',
'fetch-blob',
'data-uri-to-buffer',
'formdata-polyfill'
].join('|')})`
]
};