Skip to content

Instantly share code, notes, and snippets.

@LukeSmith16
Last active April 2, 2023 18:46
Show Gist options
  • Save LukeSmith16/4fbc95fb0996294f52a8ac02111edf41 to your computer and use it in GitHub Desktop.
Save LukeSmith16/4fbc95fb0996294f52a8ac02111edf41 to your computer and use it in GitHub Desktop.
Register a custom UITestConnectionManager in our app if we are running a testing environment
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.onAppear {
#if DEBUG
guard ProcessInfo.isRunningUITests else { return }
UITestConnectionManager.register()
#endif
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment