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.
This commit is contained in:
19
tabatago-swift/TabataGoUITests/TabataGoUITests.swift
Normal file
19
tabatago-swift/TabataGoUITests/TabataGoUITests.swift
Normal file
@@ -0,0 +1,19 @@
|
||||
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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user