We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8298f5 commit 99ea35aCopy full SHA for 99ea35a
.gitignore
@@ -1,2 +1,3 @@
1
lib/
2
node_modules/
3
+coverage/
.travis.yml
@@ -4,3 +4,5 @@ node_js:
4
cache:
5
directories:
6
- node_modules
7
+after_success:
8
+ - bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
package.json
@@ -39,5 +39,9 @@
39
"react": "16.4.2",
40
"react-dom": "16.4.2",
41
"react-testing-library": "5.0.0"
42
+ },
43
+ "jest": {
44
+ "coverageDirectory": "./coverage/",
45
+ "collectCoverage": true
46
}
47
0 commit comments