Home
last modified time | relevance | path

Searched refs:expectMethodToThrowAsync (Results 1 – 6 of 6) sorted by relevance

/expo/apps/test-suite/tests/
H A DSMS.js13 import { expectMethodToThrowAsync } from '../TestUtils';
41 const error = await expectMethodToThrowAsync(testSMSComposeWithUndefinedRecipient);
46 const error = await expectMethodToThrowAsync(testSMSComposeWithNullRecipient);
H A DSMS.ios.js13 import { expectMethodToThrowAsync } from '../TestUtils';
43 const error = await expectMethodToThrowAsync(testSMSComposeWithUndefinedRecipient);
48 const error = await expectMethodToThrowAsync(testSMSComposeWithNullRecipient);
H A DSMS.web.js4 import { expectMethodToThrowAsync } from '../TestUtils';
11 const error = await expectMethodToThrowAsync(SMS.sendSMSAsync);
H A DFirebaseJSSDKCompat.js16 import { expectMethodToThrowAsync } from '../TestUtils';
46 const error = await expectMethodToThrowAsync(() =>
H A DFirebaseJSSDK.js23 import { expectMethodToThrowAsync } from '../TestUtils';
59 const error = await expectMethodToThrowAsync(() =>
/expo/apps/test-suite/
H A DTestUtils.js34 const error = await expectMethodToThrowAsync(method);
38 export async function expectMethodToThrowAsync(method) { function