We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64842d0 commit 94fb45bCopy full SHA for 94fb45b
.gitignore
@@ -1,9 +1,10 @@
1
build/
2
+coverage/
3
4
npm-debug.log*
5
node_modules/
6
7
*.tgz
8
9
.DS_Store
-*~
10
+*~
jest.config.js
@@ -10,5 +10,9 @@ module.exports = {
transform: {
11
// use babel-jest@23 for babel@6 support (https://github.com/facebook/jest/issues/8230#issuecomment-479470547)
12
'\\.js$': require.resolve('babel-jest')
13
- }
+ },
14
+ coveragePathIgnorePatterns: [
15
+ '/node_modules/', // default
16
+ '<rootDir>/test-utils/' // ignore test-utils
17
+ ]
18
}
0 commit comments