import XCTest final class KanbanUITests: XCTestCase { @MainActor func testAppLaunches() throws { let app = XCUIApplication() app.launch() XCTAssertTrue(app.wait(for: .runningForeground, timeout: 30)) XCTAssertTrue(app.windows.firstMatch.waitForExistence(timeout: 30)) } }