1'use strict'; 2 3import * as EASClient from 'expo-eas-client'; 4 5export const name = 'EASClient'; 6 7export async function test(t) { 8 t.describe('EASClient', () => { 9 t.it('gets the EAS client ID', () => { 10 const clientId = EASClient.clientID; 11 t.expect(clientId).toBeTruthy(); 12 const clientId2 = EASClient.clientID; 13 t.expect(clientId).toEqual(clientId2); 14 }); 15 }); 16} 17