wix/detox

Gray box end-to-end testing and automation framework for mobile apps

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 35 minutes ago
Added to GitGenius on September 5th, 2026
Created on June 15th, 2016
Open Issues & Pull Requests: 206 (+0)
GitHub issues: Enabled
Number of forks: 1,911
Total Stargazers: 12,026 (+0)
Total Subscribers: 351 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 22.8 hours
Mean response time: 34.0 days
90th percentile: 84.1 days
Tracked items: 308

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 96% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "type: enhancement ⚡️" is answered fastest, typically in about 3 hours, while "platform: android" waits about 4 days. Only 5% of issues opened in the past year have been closed. Three people close 55% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 82
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 923 days
Stale 30+ days: 76
Stale 90+ days: 71

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • status: triage (204)
  • type: bug 🐞 (195)
  • 🏚 stale (191)
  • platform: android (111)
  • platform: ios (94)
  • type: enhancement ⚡️ (94)
  • status: accepted (79)
  • user: need help (52)

Detailed Description

Detox is a gray box end-to-end testing and automation framework for mobile apps.

The core problem Detox addresses is flakiness in mobile end-to-end tests. Traditional black box testing approaches struggle with non-deterministic behavior because they cannot observe the internal state of the application. Detox solves this by adopting gray box testing, which monitors asynchronous operations within your app to achieve automatic synchronization. This means tests wait for the app to reach a stable state before proceeding, eliminating the race conditions that cause flaky tests. Tests interact with the app exactly as a real user would, running on actual devices or simulators rather than through emulated interactions.

Detox is designed for React Native projects on both Android and iOS, with tests written in JavaScript. It works with any test runner through its core APIs and includes Jest integration out of the box. The tool is built for continuous integration workflows, allowing teams to reduce reliance on manual QA by running tests reliably on CI platforms. The modern async-await API enables proper breakpoint debugging in asynchronous tests, which is uncommon in mobile testing frameworks. Detox officially supports recent React Native versions and is compatible with React Native's New Architecture, though it may work with older versions as well.

The project maintains active engagement with its community through a Discord server and accepts issue reports for problems with unsupported React Native versions. Development activity shows consistent attention to compatibility with evolving React Native releases and responsiveness to user-reported issues. The tool continues to receive updates addressing edge cases, such as known visibility issues on Android inherited from React Native itself.