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.
20 lines
479 B
Swift
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)
|
|
}
|
|
}
|