1'use strict'; 2import { Platform } from 'expo-modules-core'; 3 4import ExponentTest from '../ExponentTest'; 5 6export function isDeviceFarm() { 7 return ExponentTest && ExponentTest.isInCI && Platform.OS === 'android'; 8} 9 10export function isInteractive() { 11 return !isDeviceFarm() && !isDetox(); 12} 13 14export function isDetox() { 15 return global.DETOX; 16} 17