Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaijiro Wachi <daijiro.wachi@gmail.com>2015-04-11 22:21:27 +0300
committerDaijiro Wachi <daijiro.wachi@gmail.com>2015-04-11 22:21:27 +0300
commit65bf7cffaf91c426b676c47529eee796f8b8b75c (patch)
treecee8a86f144167f1ed02f255556f4854955bb8e8
parent756a3fbb852a2469afe706635ed88d22c37743e5 (diff)
test: Use an alias of scripts and run-scripts in test-all
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index ba5224081..eab43a627 100644
--- a/package.json
+++ b/package.json
@@ -184,7 +184,7 @@
"test-legacy": "node ./test/run.js",
"test": "tap --timeout 240 test/tap/*.js",
"tap": "tap --timeout 240 test/tap/*.js",
- "test-all": "node ./test/run.js && tap --timeout 240 test/tap/*.js",
+ "test-all": "npm run test-legacy && npm test",
"prepublish": "node bin/npm-cli.js prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j8 doc",
"dumpconf": "env | grep npm | sort | uniq"
},