From feb85382f2a4cfb5d004326b734b884013d525d2 Mon Sep 17 00:00:00 2001 From: Tim Trinidad Date: Tue, 23 Jan 2018 15:05:31 -0500 Subject: [PATCH] Revert back to using '**' glob for tests, wrap in quotes to force node to parse the args --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c23931e..a317664 100644 --- a/package.json +++ b/package.json @@ -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",