@@ -183,7 +183,7 @@ test('makeAuthResponse && verifyAuthResponse', async () => {
183
183
) ;
184
184
expect ( ( decodedToken . payload as any ) . username ) . toBe ( null ) ;
185
185
186
- await verifyAuthResponse ( authResponse , nameLookupURL ) . then ( verifiedResult => {
186
+ await verifyAuthResponse ( authResponse ) . then ( verifiedResult => {
187
187
expect ( verifiedResult ) . toBe ( true ) ;
188
188
} ) ;
189
189
@@ -257,11 +257,11 @@ test('auth response with username', async () => {
257
257
expect ( verified ) . toBe ( true ) ;
258
258
} ) ;
259
259
260
- await verifyAuthResponse ( authResponse , nameLookupURL ) . then ( verifiedResult => {
260
+ await verifyAuthResponse ( authResponse ) . then ( verifiedResult => {
261
261
expect ( verifiedResult ) . toBe ( true ) ;
262
262
} ) ;
263
263
264
- expect ( fetchMock . mock . calls . length ) . toEqual ( 2 ) ;
264
+ expect ( fetchMock . mock . calls . length ) . toEqual ( 1 ) ;
265
265
} ) ;
266
266
267
267
test ( 'auth response with invalid private key' , async ( ) => {
@@ -308,8 +308,6 @@ test('auth response with invalid private key', async () => {
308
308
} ) ;
309
309
310
310
test ( 'handlePendingSignIn with authResponseToken' , async ( ) => {
311
- const url = `${ nameLookupURL } ryan.id` ;
312
-
313
311
fetchMock . mockResponse ( JSON . stringify ( sampleNameRecords . ryan ) ) ;
314
312
315
313
const appPrivateKey = makeECPrivateKey ( ) ;
@@ -338,12 +336,10 @@ test('handlePendingSignIn with authResponseToken', async () => {
338
336
339
337
expect ( fail ) . toBeCalledTimes ( 0 ) ;
340
338
expect ( pass ) . toBeCalledTimes ( 1 ) ;
341
- expect ( fetchMock . mock . calls . length ) . toEqual ( 3 ) ;
342
- expect ( fetchMock . mock . calls [ 0 ] [ 0 ] ) . toEqual ( url ) ;
339
+ expect ( fetchMock . mock . calls . length ) . toEqual ( 0 ) ;
343
340
} ) ;
344
341
345
342
test ( 'handlePendingSignIn 2' , async ( ) => {
346
- const url = `${ nameLookupURL } ryan.id` ;
347
343
fetchMock . mockResponse ( JSON . stringify ( sampleNameRecords . ryan ) ) ;
348
344
349
345
const appPrivateKey = makeECPrivateKey ( ) ;
@@ -371,8 +367,7 @@ test('handlePendingSignIn 2', async () => {
371
367
await blockstack . handlePendingSignIn ( authResponse ) . then ( pass ) . catch ( fail ) ;
372
368
expect ( fail ) . toBeCalledTimes ( 0 ) ;
373
369
expect ( pass ) . toBeCalledTimes ( 1 ) ;
374
- expect ( fetchMock . mock . calls . length ) . toEqual ( 3 ) ;
375
- expect ( fetchMock . mock . calls [ 0 ] [ 0 ] ) . toEqual ( url ) ;
370
+ expect ( fetchMock . mock . calls . length ) . toEqual ( 0 ) ;
376
371
} ) ;
377
372
378
373
test ( 'handlePendingSignIn with existing user session' , async ( ) => {
0 commit comments