forked from karlprieb/babel-plugin-add-import-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
38 lines (37 loc) · 1.29 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
32
33
34
35
36
37
38
'use strict';
/**
* @type {import('jest').Config}
*/
module.exports = {
restoreMocks: true,
resetMocks: true,
testEnvironment: 'node',
testRunner: 'jest-circus/runner',
// ? 24h if debugging so MMS and other tools don't choke, otherwise 1m
testTimeout:
1000 *
60 *
(process.env.VSCODE_INSPECTOR_OPTIONS
? 60 * 24
: process.platform === 'win32'
? 5
: 1),
// ? Minimum of 2 concurrent tests executed at once; maximum of cpu cores - 1
maxConcurrency: Math.max(require('node:os').cpus().length - 1, 2),
verbose: false,
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
// ! If changed, also update these aliases in tsconfig.json,
// ! babel.config.js, 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)'],
// ? Make sure jest-haste-map doesn't try to parse and cache fixtures
modulePathIgnorePatterns: ['<rootDir>/test/fixtures']
};