I want to set jest with pre-push(husky) on my project.
When I type $git push, the test is working but the push doesn't execute.
Is there anything wrong?
[Version]
"husky: "^7.0.4"
[package.json]
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run test"
}
},
[.husky/pre-push]
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npm run test