Skip to content

Commit 76186e8

Browse files
committed
prettier
1 parent c5a90de commit 76186e8

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,7 @@ describe('api', () => {
126126
token = tokenToWrite;
127127
return Promise.resolve();
128128
};
129-
stub(
130-
indexeddb,
131-
'writeDebugTokenToIndexedDB'
132-
).callsFake(fakeWrite);
129+
stub(indexeddb, 'writeDebugTokenToIndexedDB').callsFake(fakeWrite);
133130
stub(indexeddb, 'readDebugTokenFromIndexedDB').resolves(token);
134131
const logStub = stub(logger.logger, 'warn');
135132
const consoleStub = stub(console, 'log');

packages/app-check/src/api.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,7 @@ export function initializeAppCheck(
7474
);
7575
// Make this a separate console statement so user will at least have the
7676
// 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}.`));
8078
}
8179

8280
if (provider.isInitialized()) {

0 commit comments

Comments
 (0)