-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjest.config.ts
59 lines (58 loc) · 1.42 KB
/
jest.config.ts
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
55
56
57
58
59
export default {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest",
"^.+\\.(ts|tsx|js|jsx)$": "babel-jest"
},
"testMatch": [
"**/__test__/**/?(*.)+(spec|test).[jt]s?(x)"
],
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"moduleDirectories": ["node_modules", "src"],
"transformIgnorePatterns": [
"node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)"
],
"collectCoverage": true,
coverageDirectory: './reports/coverage',
"coverageReporters": [
"json",
"html",
"json-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"src/**",
"!src/index.ts"
],
"coverageThreshold": {
// "global": {
// "branches": 85,
// "functions": 85,
// "lines": 85,
// "statements": 85
// }
},
"reporters": [
"default",
["jest-html-reporters",
{
"publicPath": "./reports/html",
"filename": "index.html",
"expand": true
}
],
["jest-junit",
{
"outputDirectory": "reports/junit",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
]
]
};