End-to-End (E2E) Testing
Tools
| Platform | Tool |
|---|---|
| Android | Maestro / UI Automator |
| iOS | Maestro / XCUITest |
| Flutter | Maestro / Patrol |
| React Native | Maestro / Detox |
Rekomendasi: Maestro
Maestro adalah tool E2E testing cross-platform yang mudah digunakan:
# flows/login.yaml
appId: com.bitgroup.app
---
- launchApp
- tapOn: "Email"
- inputText: "test@bitgroup.asia"
- tapOn: "Password"
- inputText: "password123"
- tapOn: "Login"
- assertVisible: "Welcome"
Critical Flows yang Wajib di-E2E Test
- Login / Register
- Core business flow (misal: checkout, transfer)
- Logout
- Deep link handling
CI Integration
E2E test sebaiknya dijalankan di CI pada branch develop dan release/*, bukan di setiap MR (karena lambat).