Skip to content

Commit 8788d50

Browse files
committed
Formatting
1 parent 537ca75 commit 8788d50

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

packages-exp/auth-exp/src/platform_browser/popup_redirect.test.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ describe('platform_browser/popup_redirect', () => {
5555

5656
beforeEach(async () => {
5757
auth = await testAuth();
58-
resolver = new (browserPopupRedirectResolver as SingletonInstantiator<
59-
PopupRedirectResolver
60-
>)();
58+
resolver = new (browserPopupRedirectResolver as SingletonInstantiator<PopupRedirectResolver>)();
6159

6260
sinon.stub(validateOrigin, '_validateOrigin').returns(Promise.resolve());
6361
iframeSendStub = sinon.stub();
@@ -75,11 +73,11 @@ describe('platform_browser/popup_redirect', () => {
7573
} as unknown) as gapi.iframes.Context)
7674
);
7775

78-
authWindow._window().gapi = {
76+
authWindow._window().gapi = ({
7977
iframes: {
80-
CROSS_ORIGIN_IFRAMES_FILTER: 'cross-origin-iframes-filter',
78+
CROSS_ORIGIN_IFRAMES_FILTER: 'cross-origin-iframes-filter'
8179
}
82-
} as unknown as typeof gapi;
80+
} as unknown) as typeof gapi;
8381
});
8482

8583
afterEach(() => {

packages-exp/auth-exp/src/platform_browser/strategies/phone.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ describe('platform_browser/strategies/phone', () => {
421421
let idToken: string;
422422

423423
beforeEach(() => {
424-
idToken = makeJWT({exp: '200', iat: '100'});
424+
idToken = makeJWT({ exp: '200', iat: '100' });
425425
reloadMock = mockEndpoint(Endpoint.GET_ACCOUNT_INFO, {
426426
users: [{ uid: 'uid' }]
427427
});

0 commit comments

Comments
 (0)