Skip to content

Commit

Permalink
fix launch timeout bug (fix appium#1340)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlipps committed Oct 24, 2013
1 parent 82eeb3a commit 4b0ed93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/devices/ios/instruments.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var spawn = require('child_process').spawn

var Instruments = function(opts) {
this.app = opts.app;
this.launchTimeout = opts.launchTimeout;
this.launchTimeout = opts.launchTimeout || 90000;
this.udid = opts.udid;
this.isSafariLauncherApp = opts.isSafariLauncherApp;
this.bootstrap = opts.bootstrap;
Expand Down

0 comments on commit 4b0ed93

Please sign in to comment.