File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ describe('internal api', () => {
630
630
expect ( token ) . to . deep . equal ( { token : fakeRecaptchaAppCheckToken . token } ) ;
631
631
} ) ;
632
632
633
- it ( 'exchanges debug token only once if debug mode with no cached token' , async ( ) => {
633
+ it ( 'exchanges debug token only once if debug mode with no cached token' , async ( ) => {
634
634
const exchangeTokenStub : SinonStub = stub (
635
635
client ,
636
636
'exchangeToken'
@@ -643,7 +643,10 @@ describe('internal api', () => {
643
643
provider : new ReCaptchaV3Provider ( FAKE_SITE_KEY )
644
644
} ) ;
645
645
const appCheckServie = appCheck as AppCheckService ;
646
- const [ token1 , token2 ] = await Promise . all ( [ getToken ( appCheckServie ) , getToken ( appCheckServie ) ] ) ;
646
+ const [ token1 , token2 ] = await Promise . all ( [
647
+ getToken ( appCheckServie ) ,
648
+ getToken ( appCheckServie )
649
+ ] ) ;
647
650
expect ( exchangeTokenStub . args [ 0 ] [ 0 ] . body [ 'debug_token' ] ) . to . equal (
648
651
'my-debug-token'
649
652
) ;
You can’t perform that action at this time.
0 commit comments