Skip to content

Commit 86331a5

Browse files
committed
prettier
1 parent 2952e2f commit 86331a5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

packages/app-check/src/api.test.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,14 @@ describe('api', () => {
121121
).to.equal(appCheckInstance);
122122
});
123123
it('starts debug mode on first call', async () => {
124-
const fakeWrite = ():Promise<void> => Promise.resolve();
124+
const fakeWrite = (): Promise<void> => Promise.resolve();
125125
const writeToIndexedDBStub = stub(
126126
indexeddb,
127127
'writeDebugTokenToIndexedDB'
128128
).callsFake(fakeWrite);
129-
stub(
130-
indexeddb,
131-
'readDebugTokenFromIndexedDB'
132-
).callsFake(() => Promise.resolve(undefined));
129+
stub(indexeddb, 'readDebugTokenFromIndexedDB').callsFake(() =>
130+
Promise.resolve(undefined)
131+
);
133132
const logStub = stub(logger.logger, 'warn');
134133
const consoleStub = stub(console, 'log');
135134
self.FIREBASE_APPCHECK_DEBUG_TOKEN = true;

0 commit comments

Comments
 (0)