detox
Installation
SKILL.md
Detox
Detox is designed for React Native. Unlike Appium (Black-box), Detox works "Gray-box" by running inside your app, monitoring the main thread. It knows when the app is busy/idle, eliminating flaky waits.
When to Use
- React Native Apps: The gold standard for RN E2E.
- Speed & Stability: Much less flaky than Appium for RN because of synchronization.
- CI/CD: Designed to be fast enough for CI.
Quick Start
describe("Example", () => {
beforeAll(async () => {
await device.launchApp();
});