forked from goldbergyoni/various-testing-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.js
More file actions
31 lines (31 loc) · 727 Bytes
/
jest.config.js
File metadata and controls
31 lines (31 loc) · 727 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
module.exports = {
verbose: true,
testMatch: ["**/test/*.js", "!**/playground/**"],
collectCoverage: false,
// reporters: [
// ["jest-silent-reporter", {
// "useDots": false
// }]
// ],
coverageReporters: ['text-summary'],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/test/**"
],
forceExit: true,
testEnvironment: 'node',
notify: true,
notifyMode: 'change',
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
'jest-watch-master',
["jest-watch-toggle-config", {
"setting": "verbose"
}],
["jest-watch-toggle-config", {
"setting": "collectCoverage"
}]
]
};