Skip to content

Commit

Permalink
increase launch timeout for slow android emus
Browse files Browse the repository at this point in the history
  • Loading branch information
jlipps committed Nov 5, 2013
1 parent 89c260a commit 6137e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/driverblock.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var driverBlock = function(tests, host, port, caps, extraCaps) {
port = (typeof port === "undefined" || port === null) ? _.clone(defaultPort) : port;
caps = (typeof caps === "undefined" || caps === null) ? _.clone(defaultCaps) : caps;
caps = _.extend(caps, typeof extraCaps === "undefined" ? {} : extraCaps);
caps.launchTimeout = 30000;
caps.launchTimeout = 35000;
var driverHolder = {driver: null, sessionId: null};
var expectConnError = extraCaps && extraCaps.expectConnError;

Expand Down

0 comments on commit 6137e13

Please sign in to comment.