-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.js
More file actions
54 lines (53 loc) · 1.66 KB
/
Copy pathjest.config.js
File metadata and controls
54 lines (53 loc) · 1.66 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const transformIgnorePatterns = [
'node_modules/(?!(@patternfly/react-core/src|@patternfly/react-icons/dist/esm|uuid/dist/esm-browser))',
];
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
clearMocks: true,
collectCoverage: false,
// collectCoverageFrom: ['src/**/*.js'],
// coverageDirectory: './coverage/',
fakeTimers: {
enableGlobally: true,
},
moduleDirectories: ['node_modules', '<rootDir>/apps/koku-mfe-cloud/src', '<rootDir>/libs'],
moduleNameMapper: {
'\\.(css|scss)$': 'identity-obj-proxy',
'^api/(.*)$': '<rootDir>/libs/api/src/api/$1',
'^components/i18n$': '<rootDir>/libs/i18n/src/i18n',
'^@koku/i18n$': '<rootDir>/libs/i18n/src/i18n',
'^routes/components/(.*)$': '<rootDir>/libs/components/src/components/$1',
'^routes/utils/(.*)$': '<rootDir>/libs/components/src/utils/$1',
'^@koku/components/(.*)$': '<rootDir>/libs/components/src/$1',
},
preset: 'ts-jest',
roots: ['<rootDir>/apps/koku-mfe-cloud/src/', '<rootDir>/libs/'],
setupFiles: ['<rootDir>/test/testEnv.ts'],
setupFilesAfterEnv: ['<rootDir>/test/jest.setup.js'],
testEnvironment: 'jsdom',
transformIgnorePatterns,
transform: {
'^.+\\.svg$': 'jest-transform-stub',
'^.+\\.(ts|js)x?$': [
'@swc/jest',
{
$schema: 'http://json.schemastore.org/swcrc',
jsc: {
experimental: {
plugins: [['swc_mut_cjs_exports', {}]],
},
parser: {
jsx: true,
syntax: 'typescript',
tsx: true,
},
transform: {
react: {
runtime: 'automatic',
},
},
},
},
],
},
};