Coder Social home page Coder Social logo

detox-expo-helpers's Introduction

detox-expo-helpers

Utilities for using detox in your Expo/Create React Native App apps.

Use it

Install it

yarn add fschoenfeldt/detox-expo-helpers -D
 # or
npm i fschoenfeldt/detox-expo-helpers --save-dev

Also, declare expo-detox-hooks in your project's package.json.

Set up detox on your project

Follow the steps in the detox Getting Started guide.

Download the Expo app to some directory in your project and configure in package.json

You can download the Expo app from the Expo Tools page. See an example package.json configuration

Use detox-expo-helpers in your app

⚠️ Important: This fork disables deviceSynchronization because it was the only way we could figure out getting Detox@18 to work. When launching the App with reloadApp, you have to wait for the first element to ensure the app is properly booted. (See Example)

All you really need to use is reloadApp, like so:

const { reloadApp } = require('detox-expo-helpers');

describe(`Example Tests`, () => {
    beforeAll(async () => {
      await reloadApp({
        // Optionally, you can also set some parameters when loading the app
        // see https://github.com/wix/Detox/blob/master/docs/APIRef.DeviceObjectAPI.md
        args: {
          disableTouchIndicators: true,
          delete: true,
          languageAndLocale: {
            language: "de-DE",
            locale: "de-DE",
          },
        },
        launchArgs: {
          // see https://github.com/wix/Detox/blob/master/docs/APIRef.LaunchArgs.md
        }
      });
      // ⚠️ Important! Wait for first element to ensure that app is booted
      const confirmButton = $('confirm_button');
      await waitFor(confirmButton).toBeVisible().withTimeout(10000);
    });

    // Your tests
    it('can do this and that', async () => { ... }
}

Example app

You can find the latest example app here, which is working with Expo@42 and Detox@18: https://github.com/fschoenfeldt/clean-expo-detox-testing

Original Example App: Try out an example app with this already configured at https://github.com/expo/with-detox-tests

detox-expo-helpers's People

Contributors

brentvatne avatar fschoenfeldt avatar quinlanj avatar xcarpentier avatar

Stargazers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.