From 4b0ed9391416fc772639df5de76c57e7cafd5864 Mon Sep 17 00:00:00 2001 From: Jonathan Lipps Date: Thu, 24 Oct 2013 08:05:29 -0700 Subject: [PATCH] fix launch timeout bug (fix #1340) --- lib/devices/ios/instruments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/devices/ios/instruments.js b/lib/devices/ios/instruments.js index 1f885eed661..cbf959a7f95 100644 --- a/lib/devices/ios/instruments.js +++ b/lib/devices/ios/instruments.js @@ -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;