Increase the sleep interval for waiting for an app to launch. I’m sure there’s a better way to do this, but I don’t know what it is yet.

This commit is contained in:
Brent Simmons 2018-01-14 11:19:19 -08:00
parent f9c5c5ad60
commit 7a8e0ec4aa
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public final class UserApp {
if app.isFinishedLaunching {
return true
}
Thread.sleep(forTimeInterval: 0.5) // Give the app time to launch. This is ugly.
Thread.sleep(forTimeInterval: 1.0) // Give the app time to launch. This is ugly.
return true
}