Skip to content

Commit

Permalink
Make mocha recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkourlas committed Oct 31, 2021
1 parent 6202781 commit 1f67532
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 @@ -43,8 +43,8 @@
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"prod": "npm run-script clean && npm run-script format && npm run-script lint && tsc -p tsconfig.json",
"test-dev": "npm run-script clean-test && tsc -p test/tsconfig.json --sourceMap && mocha test/lib",
"test-prod": "npm run-script clean-test && tsc -p test/tsconfig.json && mocha test/lib"
"test-dev": "npm run-script clean-test && tsc -p test/tsconfig.json --sourceMap && mocha --recursive test/lib",
"test-prod": "npm run-script clean-test && tsc -p test/tsconfig.json && mocha --recursive test/lib"
},
"dependencies": {
"xmlcreate": "^2.0.4"
Expand Down

0 comments on commit 1f67532

Please sign in to comment.