File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,7 @@ describe('api', () => {
126
126
token = tokenToWrite ;
127
127
return Promise . resolve ( ) ;
128
128
} ;
129
- stub (
130
- indexeddb ,
131
- 'writeDebugTokenToIndexedDB'
132
- ) . callsFake ( fakeWrite ) ;
129
+ stub ( indexeddb , 'writeDebugTokenToIndexedDB' ) . callsFake ( fakeWrite ) ;
133
130
stub ( indexeddb , 'readDebugTokenFromIndexedDB' ) . resolves ( token ) ;
134
131
const logStub = stub ( logger . logger , 'warn' ) ;
135
132
const consoleStub = stub ( console , 'log' ) ;
Original file line number Diff line number Diff line change @@ -74,9 +74,7 @@ export function initializeAppCheck(
74
74
) ;
75
75
// Make this a separate console statement so user will at least have the
76
76
// first message if the token promise doesn't resolve in time.
77
- void getDebugToken ( ) . then ( token =>
78
- logger . warn ( `Debug token is ${ token } .` )
79
- ) ;
77
+ void getDebugToken ( ) . then ( token => logger . warn ( `Debug token is ${ token } .` ) ) ;
80
78
}
81
79
82
80
if ( provider . isInitialized ( ) ) {
You can’t perform that action at this time.
0 commit comments