Created
October 3, 2018 12:48
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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