Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CollectiveHealth-gists/e76e4798d18a580d19b9466343ac070f to your computer and use it in GitHub Desktop.
Save CollectiveHealth-gists/e76e4798d18a580d19b9466343ac070f to your computer and use it in GitHub Desktop.
Testing iOS at Collective Health: Passing the keys as launch arguments
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