From d440b3b398be7109acae7ed84f7aa2de78a3572b Mon Sep 17 00:00:00 2001 From: toby Date: Sat, 11 Mar 2017 14:55:24 -0500 Subject: [PATCH] Change text timeout to 30 seconds --- test/PhantomRunner.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/PhantomRunner.js b/test/PhantomRunner.js index 536cc0d6..bee2f94d 100644 --- a/test/PhantomRunner.js +++ b/test/PhantomRunner.js @@ -91,9 +91,9 @@ page.open("build/test/index.html", function(status) { /** - * Fail if the process takes longer than 10 seconds. + * Fail if the process takes longer than 30 seconds. */ setTimeout(function() { - console.log("Tests took longer than 10 seconds to run, returning."); + console.log("Tests took longer than 30 seconds to run, returning."); phantom.exit(1); -}, 10 * 1000); +}, 30 * 1000);