When your test suite is finally ready, it should be set up to run automatically on your CI server on every git push. This will alert you if new changes to the app break existing functionality.
Running detox on CI is not that different from running it locally. There are two main differences:
- We will test a release build rather than a debug build
- We will tell Detox to shut down the simulator when test is over
We will need to create a release device configuration for Detox inside package.json
under the detox
section.
Example:
"detox": {
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/example.app",
"build": "xcodebuild -project ios/example.xcodeproj -scheme example -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
}
}
}
TIP: Notice that the name
example
above should be replaced with your actual project name.
Assuming your CI is executing some sort of shell script, add the following commands that should run inside the project root:
detox build --configuration ios.sim.release
detox test --configuration ios.sim.release --cleanup
TIP: Adding
--cleanup
to the test command will make sure detox exits cleanly by shutting down the simulator when the test is over.
• Running Detox on Travis CI
Detox's own build is running on Travis, check out Detox's .travis.yml file to see how it's done.
This is a simple example configuration to get you started with Detox on Travis:
language: objective-c
osx_image: xcode8.3
branches:
only:
- master
env:
global:
- NODE_VERSION=stable
install:
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
- export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm install -g react-native-cli
- npm install -g detox-cli
script:
- detox build --configuration ios.sim.release
- detox test --configuration ios.sim.release --cleanup
• Running Detox on Bitrise
Bitrise is a popular CI service for automating React Native apps. If you are looking to get started with Bitrise, check out this guide.
You can run Detox on Bitrise by creating a new workflow. Below is an example of the Bitrise .yml file for a workflow called tests
.
Additionally, you can use a webhook on Bitrise to post the build status directly into your Slack channel.
---
format_version: 1.1.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- push_branch: "*"
workflow: tests
workflows:
_tests_setup:
steps:
- activate-ssh-key: {}
- git-clone:
inputs:
- clone_depth: ''
title: Git Clone Repo
- script:
inputs:
- content: |-
#!/bin/bash
npm cache verify
npm install
title: Install NPM Packages
before_run:
after_run:
_detox_tests:
before_run: []
after_run: []
steps:
- npm:
inputs:
- command: install -g detox-cli
title: Install Detox CLI
- npm:
inputs:
- command: install -g react-native-cli
title: Install React Native CLI
- script:
inputs:
- content: |-
#!/bin/bash
brew tap wix/brew
brew install applesimutils --HEAD
title: Install Detox Utils
- script:
inputs:
- content: |-
#!/bin/bash
detox build --configuration ios.sim.release
title: Detox - Build Release App
- script:
inputs:
- content: |-
#!/bin/bash
detox test --configuration ios.sim.release --cleanup
title: Detox - Run E2E Tests
tests:
before_run:
- _tests_setup
- _detox_tests
after_run: []