xref: /expo/apps/test-suite/ExponentTest.js (revision cd4bd26b)
1import { NativeModules } from 'react-native';
2import getenv from 'getenv';
3
4// Used for bare android device farm builds
5const ExponentTest = (NativeModules && NativeModules.ExponentTest) || {
6  get isInCI() {
7    return getenv.boolish('CI', false);
8  },
9  log: console.log,
10  completed() {
11    // noop
12  },
13  action() {
14    // noop
15  },
16};
17
18export default ExponentTest;
19