Easily pass data from your Detox e2e tests to the JS layer of your React Native application.
- Minimal setup.
- Dynamically pass strings, booleans or objects.
- Android and iOS support.
- Access context data in any of your React components.
- Written in TypeScript.
Example Detox e2e test
import { contextArgs } from 'react-native-detox-context';
describe('Some Test suite', () => {
it('should test my feature', async () => {
// This args will automatically be available in your
// React Native app during the e2e test.
const args = contextArgs({
someString: 'a string',
someNumber: 45,
someBool: true,
someObject: { prop1: 'value1', prop2: 'value2' },
});
await device.launchApp({
newInstance: true,
launchArgs: args
});
});
});Example RN app
import React from 'react';
import { withDetoxContext, DetoxContext } from 'react-native-detox-context';
function App() {
console.log('isAutomatedTest:', DetoxContext.isAutomatedTest); // true during e2e tests
console.log('String value from context:', DetoxContext.getString('someString'));
console.log('Number value from context:', DetoxContext.getNumber('someNumber'));
console.log('Boolean value from context:', DetoxContext.getBool('someBool'));
console.log('Object value from context:', DetoxContext.getObject<SomeType>('someObject'));
return <View />;
}
export default withDetoxContext(App);When writing end-to-end tests with Detox, there usually comes a time when you need to supply some flag and/or data to your React components (such as test data, or some flag to disable a feature, or perhaps authentication details etc). The standard way to achieve this in Detox is by using its Launch Arguments API. This API works great (and react-native-detox-context makes use of it), but it involves developers having to work in native code, and understand things like working with Android Bundles and iOS Process Info arguments. Not only that, you usually end up having to revisit your native code each time you have a new piece of data you'd like to send.
The react-native-detox-context library removes the need for native knowlegde and greatly simplifies how you pass data to your React Native application. You set it up once at the native layer and never need to revisit it again.
Note: These steps assume you have a React Native project that's already setup with Detox.
yarn add react-native-detox-contextWrap your root component in the withDetoxContext higher order component:
import { withDetoxContext } from 'react-native-detox-context';
function App() {
...
}
export default withDetoxContext(App);Update your MainActivity.kt with the following changes:
- Add the import:
import com.hudl.rn.detoxcontext.DetoxContext- Override
getLaunchOptionsin yourReactActivityDelegateto pass launch args as initial props:
override fun createReactActivityDelegate() = ReactActivityDelegateWrapper(...) {
override fun getLaunchOptions() = DetoxContext.processLaunchArgs(intent)
})First run a pod install (e.g. npx pod-install) so that the react-native-detox-context library gets linked.
Then update your AppDelegate.swift with the following changes:
- Add the import:
import RNDetoxContext- Pass
initialPropertieswhen creating the root view:
factory.startReactNative(
...
initialProperties: DetoxContext.processLaunchArgs())Use the contextArgs function, passing an object. The object can have string values, boolean values or object values.
Pass the object returned from contextArgs() to the launchArgs prop in the Detox device.launchApp function.
import { contextArgs } from 'react-native-detox-context';
describe('Some Test suite', () => {
it('should test my feature', async () => {
// This args will automatically be available in your
// React Native app during the e2e test.
const args = contextArgs({
someString: 'a string',
someNumber: 45,
someBool: true,
someObject: { prop1: 'value1', prop2: 'value2' },
});
await device.launchApp({
newInstance: true,
launchArgs: args
});
});
});import { withDetoxContext, DetoxContext } from 'react-native-detox-context';
interface SomeType {
prop1: string;
prop2: string;
}
function App() {
console.log('isAutomatedTest:', DetoxContext.isAutomatedTest); // true during e2e tests
// If the key you pass is present in the Detox Context then the value will
// be returned, otherwise 'undefined' will be returned.
//
// You can use these functions anywhere in your component tree.
console.log('String value', DetoxContext.getString('someString'));
console.log('Number value', DetoxContext.getNumber('someNumber'));
console.log('Boolean value', DetoxContext.getBool('someBool'));
console.log('Object value', DetoxContext.getObject<SomeType>('someObject'));
...
}
export default withDetoxContext(App);MIT
Made with create-react-native-library