Skip to content

Commit a6c4c99

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent b0468f1 commit a6c4c99

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

packages-exp/auth-exp/src/core/user/user_credential_impl.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('core/user/user_credential_impl', () => {
4848
users: [serverUser]
4949
});
5050
});
51-
51+
5252
describe('fromIdTokenResponse', () => {
5353
const idTokenResponse: IdTokenResponse = {
5454
idToken: 'my-id-token',
@@ -75,8 +75,6 @@ describe('core/user/user_credential_impl', () => {
7575
expect(userCredential.user.uid).to.eq('my-uid');
7676
});
7777

78-
it('should not trigger callbacks', () => {
79-
80-
});
78+
it('should not trigger callbacks', () => {});
8179
});
8280
});

packages-exp/auth-exp/src/core/user/user_impl.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,7 @@ describe('core/user/user_impl', () => {
239239
it('should not trigger additional callbacks', async () => {
240240
const cb = sinon.spy();
241241
auth.onAuthStateChanged(cb);
242-
await UserImpl._fromIdTokenResponse(
243-
mockAuth,
244-
idTokenResponse
245-
);
242+
await UserImpl._fromIdTokenResponse(mockAuth, idTokenResponse);
246243
expect(cb).not.to.have.been.called;
247244
});
248245
});

0 commit comments

Comments
 (0)