Revert back to using '**' glob for tests, wrap in quotes to force node to parse the args

This commit is contained in:
Tim Trinidad
2018-01-23 15:05:31 -05:00
parent f196604d73
commit feb85382f2

View File

@@ -38,7 +38,7 @@
"lint": "jscs . && jshint . --exclude-path .gitignore",
"standalone": "browserify index.js --standalone Pjax > pjax.js",
"build-debug": "browserify index.js --debug --standalone Pjax > pjax.js",
"tests": "tape -r ./tests/setup.js ./tests/lib/*.js ./tests/lib/proto/*.js",
"tests": "tape -r ./tests/setup.js './tests/**/*.js'",
"test": "npm run lint && npm run tests | tap-spec",
"coverage-tests": "npm run tests | tap-nyc",
"coverage": "nyc -x \"tests/**\" npm run coverage-tests",