Change text timeout to 30 seconds

This commit is contained in:
toby 2017-03-11 14:55:24 -05:00
parent 728b4ea89d
commit d440b3b398

View file

@ -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);