@@ -159,7 +159,7 @@ describe('openAuthSessionAsync', () => {
159
159
expect . any ( Function ) ,
160
160
) ;
161
161
expect ( result ) . toBeNull ( ) ;
162
- } , 10000 ) ;
162
+ } ) ;
163
163
164
164
it ( 'resolves with redirect URL when matching URL received' , async ( ) => {
165
165
const mockAppStateListener = { ...mockEmitterSubscription } ;
@@ -179,7 +179,7 @@ describe('openAuthSessionAsync', () => {
179
179
const result = await openAuthSessionAsync ( mockUrl , mockRedirectUrls ) ;
180
180
181
181
expect ( result ) . toBe ( mockReturnUrl ) ;
182
- } , 10000 ) ;
182
+ } ) ;
183
183
184
184
it ( 'ignores non-matching redirect URLs' , async ( ) => {
185
185
const mockAppStateListener = { ...mockEmitterSubscription } ;
@@ -212,7 +212,7 @@ describe('openAuthSessionAsync', () => {
212
212
const result = await openAuthSessionAsync ( mockUrl , mockRedirectUrls ) ;
213
213
214
214
expect ( result ) . toBeNull ( ) ;
215
- } , 10000 ) ;
215
+ } ) ;
216
216
217
217
it ( 'cleans up listeners after completion' , async ( ) => {
218
218
const mockAppStateListener = { ...mockEmitterSubscription } ;
@@ -235,7 +235,7 @@ describe('openAuthSessionAsync', () => {
235
235
236
236
expect ( mockAppStateListener . remove ) . toHaveBeenCalled ( ) ;
237
237
expect ( mockLinkingListener . remove ) . toHaveBeenCalled ( ) ;
238
- } , 10000 ) ;
238
+ } ) ;
239
239
240
240
it ( 'handles app state transition from background to active' , async ( ) => {
241
241
const mockAppStateListener = { ...mockEmitterSubscription } ;
@@ -259,7 +259,7 @@ describe('openAuthSessionAsync', () => {
259
259
const result = await openAuthSessionAsync ( mockUrl , mockRedirectUrls ) ;
260
260
261
261
expect ( result ) . toBeNull ( ) ;
262
- } , 10000 ) ;
262
+ } ) ;
263
263
264
264
it ( 'handles app state change when already active' , async ( ) => {
265
265
const mockAppStateListener = { ...mockEmitterSubscription } ;
@@ -286,7 +286,7 @@ describe('openAuthSessionAsync', () => {
286
286
const result = await openAuthSessionAsync ( mockUrl , mockRedirectUrls ) ;
287
287
288
288
expect ( result ) . toBeNull ( ) ;
289
- } , 10000 ) ;
289
+ } ) ;
290
290
} ) ;
291
291
292
292
describe ( 'unsupported platform' , ( ) => {
0 commit comments