xref: /expo/apps/test-suite/utils/Environment.js (revision 191a2fb0)
1'use strict';
2import { Platform } from '@unimodules/core';
3
4import ExponentTest from '../ExponentTest';
5
6export function isDeviceFarm() {
7  return ExponentTest && ExponentTest.isInCI && Platform.OS === 'android';
8}
9