forked from openmrs/openmrs-esm-patient-management
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjest.config.json
34 lines (34 loc) · 833 Bytes
/
jest.config.json
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
{
"transform": {
"^.+\\.tsx?$": "@swc/jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@openmrs)"
],
"moduleNameMapper": {
"\\.(s?css)$": "identity-obj-proxy",
"^@carbon/icons-react/es/(.*)$": "@carbon/icons-react/lib/$1",
"^@carbon/charts": "identity-obj-proxy",
"^carbon-components-react/es/(.*)$": "carbon-components-react/lib/$1",
"@openmrs/esm-framework": "@openmrs/esm-framework/mock",
"lodash-es": "lodash"
},
"collectCoverageFrom": [
"**/src/**/*.tsx",
"!**/node_modules/**",
"!**/vendor/**",
"!**/src/**/*.test.*",
"!**/src/declarations.d.tsx"
],
"coverageThreshold": {
"global": {
"statements": 8,
"branches": 5,
"functions": 7,
"lines": 8
}
},
"setupFilesAfterEnv": [
"<rootDir>/tools/setupTests.ts"
]
}