forked from wednesday-solutions/react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.json
50 lines (50 loc) · 1.43 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
{
"collectCoverageFrom": [
"app/**/*.{js,jsx}",
"uat/**/*.js",
"!app/**/*.test.{js,jsx}",
"!app/*/RbGenerated*/*.{js,jsx}",
"!app/app.js",
"!app/components/ScrollToTop/*.js",
"!app/components/ErrorBoundary/*.js",
"!app/global-styles.js",
"!app/*/*/loadable.{js,jsx}",
"!**/loadable.js",
"!**/apiUtils.js",
"!**/testUtils.js",
"!**/stories/**",
"!**/themes/index.js"
],
"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",
"@(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"
},
"setupFilesAfterEnv": ["<rootDir>/jest.setup.js", "<rootDir>/internals/testing/test-bundler.js"],
"testRegex": "tests/.*\\.test\\.js$",
"snapshotSerializers": []
}