generated from wednesday-solutions/react-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
jest.config.json
53 lines (53 loc) · 1.59 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"collectCoverageFrom": [
"app/**/*.{js,jsx,ts,tsx}",
"!app/**/*.test.{ts,tsx}",
"!app/*/RbGenerated*/*.{ts,tsx}",
"!app/app.tsx",
"!app/components/ScrollToTop/*.tsx",
"!app/components/ErrorBoundary/*.tsx",
"!app/global-styles.{ts}",
"!app/*/*/loadable.{js,ts,tsx}",
"!**/loadable.tsx",
"!**/apiUtils.ts",
"!**/testUtils.tsx",
"!**/stories/**",
"!**/themes/index.ts",
"!app/vendor.d.ts"
],
"testEnvironment": "jsdom",
"reporters": [
"default",
[
"jest-sonar",
{
"outputDirectory": "reports",
"outputName": "test-report.xml",
"relativeRootDir": "./",
"reportedFilePath": "relative"
}
]
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90
}
},
"coverageReporters": ["json-summary", "text", "lcov"],
"moduleDirectories": ["node_modules", "app"],
"moduleNameMapper": {
"@app(.*)$": "<rootDir>/app/$1",
"^lodash-es(.*)": "lodash$1",
"@(containers|components|services|utils|themes)(.*)$": "<rootDir>/app/$1/$2",
".*\\.(css|less|styl|scss|sass)$": "<rootDir>/internals/mocks/cssModule.js",
".*\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/internals/mocks/image.js"
},
"transformIgnorePatterns": ["/node_modules/(?!lodash-es/*)"],
"setupFilesAfterEnv": ["<rootDir>/jest.setup.js", "<rootDir>/internals/testing/test-bundler.js"],
"setupFiles": ["raf/polyfill"],
"testRegex": "tests/.*\\.test\\.[jt]sx?$",
"snapshotSerializers": []
}