qa-testing-ios
iOS testing with XCTest/XCUITest/Swift Testing via xcodebuild/simctl. Use when choosing destinations, controlling flakes, or parsing xcresult.
What this skill does
# QA Testing (iOS)
Use `xcodebuild` + Xcode Simulator (`simctl`) to build, run, and stabilize iOS tests.
**Primary docs**: [XCTest](https://developer.apple.com/documentation/xctest), [Swift Testing](https://developer.apple.com/documentation/testing), [simctl](https://developer.apple.com/documentation/xcode/simctl), [Xcode testing](https://developer.apple.com/documentation/xcode/testing-your-apps-in-xcode)
## Inputs to Confirm
- Xcode entrypoint: `-workspace` or `-project`
- `-scheme` (and optional `-testPlan`)
- Destination(s): simulator name + iOS runtime (or `OS=latest`), and whether real devices are required
- UI-test hooks: launch arguments/env toggles (stubs, demo data, auth bypass, disable animations)
- Artifact needs: `xcresult`, coverage, screenshots/video, logs
## Quick Commands
| Task | Command |
|------|---------|
| List schemes | `xcodebuild -list -workspace MyApp.xcworkspace` |
| List simulators | `xcrun simctl list devices` |
| List devices (USB) | `xcrun xctrace list devices` |
| Boot simulator | `xcrun simctl boot "iPhone 15 Pro"` |
| Wait for boot | `xcrun simctl bootstatus booted -b` |
| Build app | `xcodebuild build -scheme MyApp -sdk iphonesimulator` |
| Install app | `xcrun simctl install booted app.app` |
| Run tests | `xcodebuild test -scheme MyApp -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=latest' -resultBundlePath TestResults.xcresult` |
| Run tests (device) | `xcodebuild test -scheme MyApp -destination 'platform=iOS,id=<UDID>' -resultBundlePath TestResults.xcresult` |
| Reset simulators | `xcrun simctl shutdown all && xcrun simctl erase all` |
| Take screenshot | `xcrun simctl io booted screenshot screenshot.png` |
| Record video | `xcrun simctl io booted recordVideo recording.mov` |
## Workflow
1. Resolve build inputs (`workspace/project`, `scheme`, `testPlan`, destinations).
2. Make simulator state repeatable: shutdown/erase as needed, boot, and wait for boot.
3. Run tests with artifacts enabled (`-resultBundlePath`); parallelize and retry only when appropriate.
4. Triage failures from the `xcresult` bundle; confirm flakes with repetition; quarantine with an owner and reproduction steps.
## xcodebuild Patterns
- Select tests to reproduce: `-only-testing:TargetTests/ClassName/testMethod` and `-skip-testing:TargetTests/FlakyClass`.
- Prefer test plans for large suites: `-testPlan <plan>` (keeps device/config/runs consistent).
- Enable parallel testing when suites are isolation-safe: `-parallel-testing-enabled YES` (+ `-maximum-parallel-testing-workers N`).
- Always write a result bundle in automation: `-resultBundlePath TestResults.xcresult`.
- For reruns, split build and test: `xcodebuild build-for-testing ...` then `xcodebuild test-without-building ...`.
- Inspect results locally: `open TestResults.xcresult` or `xcrun xcresulttool get --path TestResults.xcresult --format json`.
### Flake Triage (Repetition and Retry)
- Prefer repetition to prove flake rate before adding retries.
- Use targeted reruns before suite-wide retries.
Common patterns (flags vary by Xcode version):
- Retry failing tests once in CI: `-retry-tests-on-failure -test-iterations 2`
- Measure flakiness until first failure: `-test-iterations 50 -test-repetition-mode until-failure`
- Run a single test repeatedly: `-only-testing:TargetTests/ClassName/testMethod -test-iterations 20`
## Testing Layers
| Layer | Framework | Scope |
|-------|-----------|-------|
| Unit | XCTest / Swift Testing | Business logic (fast) |
| Snapshot | XCTest + snapshot libs | View rendering |
| Integration | XCTest | Persistence, networking |
| UI | XCUITest | Critical user journeys |
### Device Matrix
- Default: simulators for PR gates; real devices for release
- Cover: one small phone, one large phone, iPad if supported
- Add OS versions only for multiple major release support
### Flake Control
Use these defaults unless the project requires otherwise:
- Disable or reduce animations in UI-test builds.
- Fix locale/timezone (via launch arguments or app-level configuration).
- Stub network at the boundary (avoid real third-party calls in UI tests).
- Reset app state between tests (fresh install, deep-link reset, or explicit teardown).
- Prefer state-based waits (`waitForExistence`, expectations) over sleeps.
- Pre-grant/reset permissions where possible (simulators): `xcrun simctl privacy booted grant ...`.
## CI Integration (GitHub Actions)
```yaml
name: iOS CI
on: [push, pull_request]
jobs:
test:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.0"
- run: |
set -euo pipefail
xcodebuild test \
-scheme MyApp \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=latest' \
-resultBundlePath TestResults.xcresult
- uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: TestResults.xcresult
```
## Do / Avoid
### Do
- Make UI tests independent and idempotent
- Use test data builders and dedicated test accounts
- Collect `xcresult` bundles on failure
- Use accessibilityIdentifier, not labels
### Avoid
- Relying on test ordering or global state
- UI tests requiring real network
- Thread.sleep() for synchronization
- Accepting AI-proposed selectors without validation
## Resources
| Resource | Purpose |
|----------|---------|
| [references/swift-testing.md](references/swift-testing.md) | Swift Testing framework |
| [references/simulator-commands.md](references/simulator-commands.md) | Complete simctl reference |
| [references/xctest-patterns.md](references/xctest-patterns.md) | XCTest/XCUITest patterns |
| [references/xcuitest-patterns.md](references/xcuitest-patterns.md) | XCUITest UI testing patterns |
| [references/snapshot-testing-ios.md](references/snapshot-testing-ios.md) | Visual snapshot testing |
| [references/ios-ci-optimization.md](references/ios-ci-optimization.md) | CI pipeline optimization |
## Templates
| Template | Purpose |
|----------|---------|
| [assets/template-ios-ui-test-stability-checklist.md](assets/template-ios-ui-test-stability-checklist.md) | Stability checklist |
## Related Skills
| Skill | Purpose |
|-------|---------|
| [software-mobile](../software-mobile/SKILL.md) | iOS development |
| [qa-testing-strategy](../qa-testing-strategy/SKILL.md) | Test strategy |
| [qa-testing-mobile](../qa-testing-mobile/SKILL.md) | Cross-platform mobile |
## Fact-Checking
- Use web search/web fetch to verify current external facts, versions, pricing, deadlines, regulations, or platform behavior before final answers.
- Prefer primary sources; report source links and dates for volatile information.
- If web access is unavailable, state the limitation and mark guidance as unverified.
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.