import XCTest final class CableUITestsScreenshotLaunchTests: XCTestCase { override class var runsForEachTargetApplicationUIConfiguration: Bool { false } override func setUpWithError() throws { continueAfterFailure = false } @MainActor func testLaunch() throws { let app = XCUIApplication() app.launchArguments = ["--uitest-reset-data", "--uitest-sample-data"] app.launch() let attachment = XCTAttachment(screenshot: app.screenshot()) attachment.name = "Launch Screen" attachment.lifetime = .keepAlways add(attachment) } }