// // PlantGuideUITests.swift // PlantGuideUITests // // Smoke tests verifying the app launches and basic navigation works. // import XCTest final class PlantGuideUITests: BaseUITestCase { // MARK: - Smoke Tests @MainActor func testAppLaunches() throws { launchClean() let tabs = TabBarScreen(app: app) tabs.assertAllTabsExist() } @MainActor func testLaunchPerformance() throws { measure(metrics: [XCTApplicationLaunchMetric()]) { app.launchArguments += [LaunchConfigKey.uiTesting, LaunchConfigKey.skipOnboarding] app.launchEnvironment[LaunchConfigKey.isUITesting] = "YES" app.launch() } } }