forked from pankajladhar/JS-DataStructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.json
More file actions
26 lines (25 loc) · 658 Bytes
/
jest.json
File metadata and controls
26 lines (25 loc) · 658 Bytes
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
{
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|_jest_|node_modules|coverage|scripts)[/\\\\]"
],
"testEnvironment": "jsdom",
"verbose": true,
"testURL": "http://localhost",
"transformIgnorePatterns": [
"node_modules"
],
"coverageReporters": ["json", "lcov", "text", "html"],
"collectCoverageFrom": [
"**/*.js",
"!coverage/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 85,
"statements": 85
}
}
}