20.0.0 • Published 1 year ago

detox-cli v20.0.0

Weekly downloads
11,464
License
MIT
Repository
github
Last release
1 year ago

Detox

Gray box end-to-end testing and automation library for mobile apps.

NPM Version NPM Downloads Build Status

What does a Detox test look like?

This is a test for a login screen, it runs on a device/simulator like an actual user:

describe('Login flow', () => {
    
  it('should login successfully', async () => {
    await device.reloadReactNative();
    await expect(element(by.id('email'))).toBeVisible();
      
    await element(by.id('email')).typeText('john@example.com');
    await element(by.id('password')).typeText('123456');
    await element(by.text('Login')).tap();
      
    await expect(element(by.text('Welcome'))).toBeVisible();
    await expect(element(by.id('email'))).toNotExist();
  });
  
});

About

High velocity native mobile development requires us to adopt continuous integration workflows, which means our reliance on manual QA has to drop significantly. Detox tests your mobile app while it's running in a real device/simulator, interacting with it just like a real user.

The most difficult part of automated testing on mobile is the tip of the testing pyramid - E2E. The core problem with E2E tests is flakiness - tests are usually not deterministic. We believe the only way to tackle flakiness head on is by moving from black box testing to gray box testing. That's where Detox comes into play.

  • Cross Platform: Write cross-platform tests in JavaScript. Currently supports iOS and Android.
  • Runs on Devices (not yet supported on iOS): Gain confidence to ship by testing your app on a device/simulator just like a real user.
  • Automatically Synchronized: Stops flakiness at the core by monitoring asynchronous operations in your app.
  • Made For CI: Execute your E2E tests on CI platforms like Travis without grief.
  • Test Runner Independent: Use Mocha, AVA, or any other JavaScript test runner you like.
  • Debuggable: Modern async-await API allows breakpoints in asynchronous tests to work as expected.

Supported versions

Environment

  • OS: MacOS 10.13 (High Sierra) or higher.
  • Xcode: 10.1 or higher.

React Native

Detox is built from the ground up to support React Native projects as well as pure native ones.

The following React Native versions have been tested:

iOSAndroid
<=0.60.4<=0.56 - Full support
>=0.57 <=0.61 - Visibility edge-case: see this RN issue*

Future versions are most likely supported, but have not been tested yet. Please open issues if you find specific issues with newer React Native versions.

(*) A fix for this issue has been merged to React Native and is expected to be released in the upcoming major version (i.e. 0.62.x).

Getting Started

Read the Getting Started Guide to get Detox running on your app in less than 10 minutes.

Documentation

Learn everything about using Detox from the documentation.

See it in Action

Open the React Native demo project and follow the instructions.

Not using React Native? we have a pure native demo project too.

Rethinking Core Principles

We believe that the only way to address the core difficulties with mobile end-to-end testing is by rethinking some of the principles of the entire approach. See what Detox does differently.

Contributing to Detox

Open source from the first commit. If you're interested in helping out with our roadmap, please see issues tagged marked with the  looking for contributors label. If you have encountered a bug or would like to suggest a new feature, please open an issue.

Dive into Detox core by reading the Detox Contribution Guide.

License

  • Detox by itself and all original source code in this repo is MIT
  • Detox relies on some important dependencies, their respective licenses are:
20.0.0

1 year ago

19.0.0

3 years ago

18.20.1

3 years ago

18.13.0

3 years ago

18.14.1

3 years ago

18.0.0

3 years ago

17.11.5-smoke.0

3 years ago

18.0.0-next.1

4 years ago

17.11.0

4 years ago

18.0.0-alpha.0

4 years ago

18.0.0-next.0

4 years ago

17.10.7-alpha.1

4 years ago

17.10.7-alpha.0

4 years ago

17.4.3

4 years ago

17.4.0

4 years ago

17.1.0

4 years ago

10.0.7

5 years ago

10.0.5

5 years ago

10.0.2

5 years ago

10.0.1

5 years ago

10.0.0

5 years ago

7.4.0

6 years ago

7.2.0

6 years ago

7.0.0

6 years ago

6.0.0

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago