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:
authorForrest L Norvell <forrest@npmjs.com>2015-04-11 21:32:38 +0300
committerForrest L Norvell <forrest@npmjs.com>2015-04-11 21:32:38 +0300
commit8299b5fb6373354a7fbaab6f333863758812ae90 (patch)
tree55df69a853d5203c572adcc9283beab8b20534c4
parent649e31ae4fd02568bae5dc6b4ea783431ce3d63e (diff)
test: set a timeout for tap tests for test-all
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index c3b438e8c..c99d3c4ed 100644
--- a/package.json
+++ b/package.json
@@ -184,7 +184,7 @@
"test-legacy": "node ./test/run.js",
"test": "tap --timeout 120 test/tap/*.js",
"tap": "tap --timeout 120 test/tap/*.js",
- "test-all": "node ./test/run.js && tap test/tap/*.js",
+ "test-all": "node ./test/run.js && tap --timeout 240 test/tap/*.js",
"prepublish": "node bin/npm-cli.js prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j8 doc",
"dumpconf": "env | grep npm | sort | uniq"
},