File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -121,15 +121,14 @@ describe('api', () => {
121
121
) . to . equal ( appCheckInstance ) ;
122
122
} ) ;
123
123
it ( 'starts debug mode on first call' , async ( ) => {
124
- const fakeWrite = ( ) :Promise < void > => Promise . resolve ( ) ;
124
+ const fakeWrite = ( ) : Promise < void > => Promise . resolve ( ) ;
125
125
const writeToIndexedDBStub = stub (
126
126
indexeddb ,
127
127
'writeDebugTokenToIndexedDB'
128
128
) . callsFake ( fakeWrite ) ;
129
- stub (
130
- indexeddb ,
131
- 'readDebugTokenFromIndexedDB'
132
- ) . callsFake ( ( ) => Promise . resolve ( undefined ) ) ;
129
+ stub ( indexeddb , 'readDebugTokenFromIndexedDB' ) . callsFake ( ( ) =>
130
+ Promise . resolve ( undefined )
131
+ ) ;
133
132
const logStub = stub ( logger . logger , 'warn' ) ;
134
133
const consoleStub = stub ( console , 'log' ) ;
135
134
self . FIREBASE_APPCHECK_DEBUG_TOKEN = true ;
You can’t perform that action at this time.
0 commit comments