mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
18 lines
No EOL
374 B
Bash
Executable file
18 lines
No EOL
374 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Run iOS tests using Xcode
|
|
# This properly runs the tests in an iOS environment
|
|
|
|
set -e
|
|
|
|
echo "Running iOS tests using Xcode..."
|
|
|
|
# Run tests for iOS simulator
|
|
xcodebuild test \
|
|
-project VibeTunnel-iOS.xcodeproj \
|
|
-scheme VibeTunnel-iOS \
|
|
-destination 'platform=iOS Simulator,name=iPhone 16' \
|
|
-quiet \
|
|
| xcbeautify
|
|
|
|
echo "Tests completed!" |