Created
July 10, 2017 23:31
-
-
Save CollectiveHealth-gists/e76e4798d18a580d19b9466343ac070f to your computer and use it in GitHub Desktop.
Testing iOS at Collective Health: Passing the keys as launch arguments
This file contains 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
var app: XCUIApplication! | |
override func setUp() { | |
super.setUp() | |
continueAfterFailure = false | |
app = XCUIApplication() | |
app.launchArguments = [ | |
LaunchArguments.ResetDefaults, | |
LaunchArguments.NoAnimations, | |
LaunchArguments.GetCareSearchResult | |
] | |
app.launch() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment