// // Tests_iOSLaunchTests.swift // Tests iOS // // Launch test: verifies the app launches and the tab bar appears. // import XCTest final class Tests_iOSLaunchTests: BaseUITestCase { /// Verify the app launches successfully and the tab bar is visible. func testLaunch_TabBarAppears() { let tabBar = TabBarScreen(app: app) tabBar.assertVisible() captureScreenshot(name: "Launch Screen") } }