Browse Source

Wait 60 seconds before giving up

As on Travis, Hexo has to build everything from scratch
Kevin van Zonneveld 9 years ago
parent
commit
0390733cb3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bin/test-acceptance

+ 1 - 1
bin/test-acceptance

@@ -16,7 +16,7 @@ function killProcessListeningOnPort () {
 
 function waitForPortOpen () {
   local port="${1}"
-  local limit="${2:-20}"
+  local limit="${2:-60}"
   local attempts=0
   echo "waiting on port ${port} to open... "
   while ! echo exit | nc localhost ${port}; do