Skip to content

Commit 515c036

Browse files
committed
chore: revert previous commit
react-scripts will not allow non interactive mode, as described on facebook/create-react-app#6284. I don't really want to deal with jest + babel transforms in this PR to keep it small
1 parent 3f56226 commit 515c036

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,12 @@
3131
"start": "react-scripts start",
3232
"build": "react-scripts build",
3333
"test": "react-scripts test",
34-
"lint": "eslint . --cache --report-unused-disable-directives",
35-
"test:coverage": "react-scripts test --coverage && open coverage/lcov-report/index.html"
34+
"lint": "eslint . --cache --report-unused-disable-directives"
3635
},
3736
"husky": {
3837
"hooks": {
3938
"pre-commit": "pretty-quick --staged --pattern \"src/**/*.*(js|jsx)\"",
40-
"pre-push": "yarn run lint && react-scripts test"
39+
"pre-push": "yarn run lint"
4140
}
4241
},
4342
"browserslist": {

0 commit comments

Comments
 (0)