-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.js
More file actions
32 lines (27 loc) · 855 Bytes
/
jest.config.js
File metadata and controls
32 lines (27 loc) · 855 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
27
28
29
30
31
32
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
module.exports = {
globals: {
/*
If defined, jest will only run tests on the function exported from this file (omit file extension) as defined in the directory '/challenges':
*/
testSingleChallenge: 'char_count',
/*
If defined, jest will only run test on the specified test case index. Will do nothing if 'testSingleChallenge' is not also defined.
*/
// testSingleTestCase: 0,
/*
If set to 'true', only custom tests will run:
*/
runCustomTestsOnly: false,
/*
If set to 'true', custom tests will not run. Will do nothing if 'runCustomTestsOnly' is set to 'true'
*/
skipCustomTests: true
},
clearMocks: true,
coverageProvider: "v8",
verbose: true,
};