-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathjest.config.json
41 lines (41 loc) · 885 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
35
36
37
38
39
40
41
{
"preset": "ts-jest",
"testEnvironment": "node",
"bail": true,
"collectCoverageFrom": [
"<rootDir>/packages/url/lib/**/*.ts",
"<rootDir>/packages/utils/lib/**/*.ts",
"!<rootDir>/packages/utils/lib/constants/*.ts"
],
"modulePaths": ["<rootDir>/lib"],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"testMatch": [
"<rootDir>/packages/url/__tests__/*.(ts|tsx)",
"<rootDir>/packages/utils/__tests__/*.(ts|tsx)"
],
"reporters": [
"default",
[
"jest-html-reporters",
{
"publicPath": "./docs/test-report/",
"filename": "api-report.html",
"pageTitle": "cloudinary-apis Report",
"expand": true
}
]
]
}