Skip to content

Commit

Permalink
build(package): use actual test ignore regex pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Oct 16, 2022
1 parent bb4355e commit 6358888
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
"list-tasks": "node -e 'console.log(Object.keys(require(\"./package.json\").scripts).join(\"\\n\"))' && npm run -ws list-tasks --if-present",
"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: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* dist"
"test:unit": "NODE_ENV=test jest --coverage --testPathIgnorePatterns 'test/integration-.*\\.test\\.ts.*'"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
Expand Down

0 comments on commit 6358888

Please sign in to comment.