File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ describe('internal api', () => {
48
48
} ) ;
49
49
50
50
afterEach ( ( ) => {
51
+ console . log ( 'afterEach' ) ;
51
52
clearState ( ) ;
52
53
removegreCAPTCHAScriptsOnPage ( ) ;
53
54
} ) ;
@@ -305,6 +306,9 @@ describe('internal api', () => {
305
306
token : `fake-memory-app-check-token`
306
307
} ) ;
307
308
clock . restore ( ) ;
309
+ console . log (
310
+ 'done() in notifies the listener with the valid token in memory immediately'
311
+ ) ;
308
312
done ( ) ;
309
313
} ;
310
314
@@ -334,6 +338,9 @@ describe('internal api', () => {
334
338
token : `fake-cached-app-check-token`
335
339
} ) ;
336
340
clock . restore ( ) ;
341
+ console . log (
342
+ 'done() in notifies the listener with the valid token in storage'
343
+ ) ;
337
344
done ( ) ;
338
345
} ;
339
346
@@ -346,6 +353,9 @@ describe('internal api', () => {
346
353
expect ( token ) . to . deep . equal ( {
347
354
token : `my-debug-token`
348
355
} ) ;
356
+ console . log (
357
+ 'done() in notifies the listener with the debug token immediately'
358
+ ) ;
349
359
done ( ) ;
350
360
} ;
351
361
You can’t perform that action at this time.
0 commit comments