Skip to content

Commit

Permalink
Fix mocha test file pattern to match subdirectories correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ig-pj authored and mroderick committed Jun 16, 2018
1 parent d2983f1 commit 559d57d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -14,9 +14,9 @@
},
"license": "BSD-3-Clause",
"scripts": {
"test-node": "mocha --recursive -R dot test/**-test.js",
"test-node": "mocha --recursive -R dot 'test/**/*-test.js'",
"test-dev": "npm run test-node -- --watch -R min",
"test-headless": "mochify --recursive -R dot --grep WebWorker --invert --plugin [ proxyquire-universal ] test/**-test.js",
"test-headless": "mochify --recursive -R dot --grep WebWorker --invert --plugin [ proxyquire-universal ] 'test/**/*-test.js'",
"test-coverage": "mochify --recursive -R dot --grep WebWorker --invert --plugin [ proxyquire-universal ] --plugin [ mochify-istanbul --exclude '**/test/**' --report text --report lcovonly --dir ./coverage ] test/**-test.js",
"test-cloud": "npm run test-headless -- --wd",
"test-webworker": "mochify --https-server 8080 test/webworker/webworker-support-assessment.js",
Expand Down

0 comments on commit 559d57d

Please sign in to comment.