FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javascript-algorithms/jest.config.js at master · JavaScriptIOT/javascript-algorithms · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JavaScriptIOT
/
javascript-algorithms
Public
forked from
trekhleb/javascript-algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
javascript-algorithms
/
jest.config.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (17 loc) · 848 Bytes
Breadcrumbs
javascript-algorithms
/
jest.config.js
Copy path
File metadata and controls
23 lines (17 loc) · 848 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module
.
exports
=
{
// The bail config option can be used here to have Jest stop running tests after
// the first failure.
bail
:
false
,
// Indicates whether each individual test should be reported during the run.
verbose
:
false
,
// Indicates whether the coverage information should be collected while executing the test
collectCoverage
:
false
,
// The directory where Jest should output its coverage files.
coverageDirectory
:
'./coverage/'
,
// If the test path matches any of the patterns, it will be skipped.
testPathIgnorePatterns
:
[
'<rootDir>/node_modules/'
]
,
// If the file path matches any of the patterns, coverage information will be skipped.
coveragePathIgnorePatterns
:
[
'<rootDir>/node_modules/'
]
,
// The pattern Jest uses to detect test files.
testRegex
:
'(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$'
,
}
;
Back
|
FazBrowse Home
|
New Git URL