From faeeba74161f1392c5da8481492ddbe70fd4a783 Mon Sep 17 00:00:00 2001 From: Watson Date: Tue, 26 Feb 2013 13:51:09 +0900 Subject: [PATCH] slightly delay the start of spec execution Because #tap method does not work when use a high performance machine --- lib/motion/project/builder.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/builder.rb b/lib/motion/project/builder.rb index 52a94e7e..fe62bd26 100644 --- a/lib/motion/project/builder.rb +++ b/lib/motion/project/builder.rb @@ -308,7 +308,7 @@ EOS - (void)appLaunched:(id)notification { // Give a bit of time for the simulator to attach... - [self performSelector:@selector(runSpecs) withObject:nil afterDelay:0.2]; + [self performSelector:@selector(runSpecs) withObject:nil afterDelay:0.3]; } - (void)runSpecs