Skip to content

Commit

Permalink
Fix #6: wrap test glob pattern in quotes, so that expansion is perfor…
Browse files Browse the repository at this point in the history
…med by mocha and not the shell.
  • Loading branch information
laurence-myers committed Apr 7, 2018
1 parent 7186d75 commit 7579c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"postpublish": "rimraf publish",
"pretest": "rimraf dist && tsc -p tsconfig.all.json",
"prepublish": "npm run test && npm run build",
"test": "mocha --require source-map-support/register dist/test/**/*.js",
"test": "mocha --require source-map-support/register \"dist/test/**/*.js\"",
"watch": "tsc -p tsconfig.all.json -w"
},
"peerDependencies": {
Expand Down

0 comments on commit 7579c31

Please sign in to comment.