Skip to content

Instantly share code, notes, and snippets.

@Morbix
Created October 3, 2018 12:48
Show Gist options
  • Save Morbix/408251ddcdbf442dc99dcfc481123bfd to your computer and use it in GitHub Desktop.
Save Morbix/408251ddcdbf442dc99dcfc481123bfd to your computer and use it in GitHub Desktop.
Não deixar o app abrir a cena se estiver rodando os testes unitários.
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
if ProcessInfo().environment["XCInjectBundleInto"] != nil { return true }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment