Skip to content

Commit

Permalink
fix: add test:all script
Browse files Browse the repository at this point in the history
  • Loading branch information
jannomeister committed Feb 25, 2021
1 parent 1a76a84 commit 80958ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .huskyrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module.exports = {
hooks: {
"commit-msg": "npm run commitlint",
"pre-commit": "npm run lint:staged",
"pre-push": "npm run test",
"pre-push": "npm run test:all",
},
};
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"typecheck": "kcd-scripts typecheck",
"test:all": "kcd-scripts test --watchAll",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "kcd-scripts typecheck",
"format": "prettier --write --ignore-unknown .",
"commitlint": "commitlint -E HUSKY_GIT_PARAMS",
"lint:staged": "lint-staged",
Expand Down

0 comments on commit 80958ff

Please sign in to comment.