Files
tabatago/tabatago-swift/TabataGoUITests/TabataGoUITests.swift
Millian Lamiaux 89cca25e22 remove Expo project and all related files
Remove the entire Expo/React Native application: routes (app/), source
code (src/), assets, iOS native build, config plugins, StoreKit config,
npm dependencies, TypeScript/ESLint/Vitest configs, and Expo-specific
documentation. The repository now contains only: admin-web, supabase,
youtube-worker, tabatago-swift, docs, scripts, and CI/tooling configs.
2026-04-21 21:55:00 +02:00

20 lines
479 B
Swift

import XCTest
final class TabataGoUITests: XCTestCase {
var app: XCUIApplication!
override func setUpWithError() throws {
continueAfterFailure = false
app = XCUIApplication()
app.launchArguments = ["--uitesting"]
app.launch()
}
func testOnboardingFlowCompletes() {
// App should show onboarding for fresh installs
// In a real test, we'd interact with onboarding steps
XCTAssertTrue(app.exists)
}
}