Skip to content

Commit

Permalink
build(package): fix npm test script jest invocations
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Oct 22, 2022
1 parent e364f7d commit a2ccf80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"prepare": "if [ -z \"$CI\" ] && ([ -z \"$NODE_ENV\" ] || [ \"$NODE_ENV\" = \"development\" ]); then husky install; if [ -r .husky/post-checkout ]; then .husky/post-checkout; fi; else echo 'skipped installing husky git hooks'; fi",
"test": "npm run test:unit --",
"test:all": "NODE_ENV=test jest --coverage",
"test:integration": "NODE_ENV=test jest",
"test:integration": "NODE_ENV=test jest --coverage 'integration-.*\\.test\\.ts.*'",
"test:repeat:all": "npm run __test:repeat:all --silent",
"test:repeat:unit": "npm run __test:repeat:unit --silent",
"test:unit": "NODE_ENV=test jest --coverage --testPathIgnorePatterns 'test/integration-.*\\.test\\.ts.*'"
"test:unit": "NODE_ENV=test jest --coverage --testPathIgnorePatterns 'integration-.*\\.test\\.ts.*'"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
Expand Down

0 comments on commit a2ccf80

Please sign in to comment.