summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Touzet <joant@atypical.net>2017-05-09 17:53:31 -0400
committerJoan Touzet <joant@atypical.net>2017-05-09 17:53:31 -0400
commit84b38f82d5e3bd176f0dc2c6ba1226db0669b19b (patch)
treefae4ba273eb3d9c82edb23d60ac94cbc0dc94d03
parentca4761c6177748f6c87bd072939f7b3eb6fa1edd (diff)
downloadcouchdb-84b38f82d5e3bd176f0dc2c6ba1226db0669b19b.tar.gz
Increase timeout for JS test harness restartServer fn
-rw-r--r--test/javascript/test_setup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/javascript/test_setup.js b/test/javascript/test_setup.js
index 0a24c8a2d..ccc0485aa 100644
--- a/test/javascript/test_setup.js
+++ b/test/javascript/test_setup.js
@@ -59,7 +59,7 @@ function waitForSuccess(fun, tag) {
while (!complete) {
var now = new Date().getTime();
- if (now > start + 5000) {
+ if (now > start + 10000) {
complete = true;
print('\nFAIL ' + tag);
quit(1);