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 c59e99e commit ba10519Copy full SHA for ba10519
.gitignore
@@ -1,3 +1,4 @@
1
node_modules/
2
/dist/
3
-.DS_Store
+.DS_Store
4
+coverage
circle.yml
@@ -10,4 +10,4 @@ test:
10
- npm run size
11
12
override:
13
- - npm run test --coverage && codecov
+ - npm run test:ci && codecov
package.json
@@ -7,6 +7,7 @@
7
"scripts": {
8
"build": "babel src -d dist",
9
"test": "jest --no-cache",
+ "test:ci": "jest --no-cache --coverage",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
0 commit comments