File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
auth-exp/src/core/providers Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ describe('auth compat', () => {
48
48
if ( typeof self !== 'undefined' ) {
49
49
sinon . stub ( underlyingAuth , '_getPersistence' ) . returns ( 'TEST' ) ;
50
50
// eslint-disable-next-line @typescript-eslint/no-floating-promises
51
- authCompat . signInWithRedirect ( new impl . GoogleAuthProvider ( 'google' ) ) ;
51
+ authCompat . signInWithRedirect ( new impl . GoogleAuthProvider ( ) ) ;
52
52
expect (
53
53
sessionStorage . getItem ( 'firebase:persistence:api-key:undefined' )
54
54
) . to . eq ( 'TEST' ) ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import { OAuthProvider } from './oauth';
26
26
export class GithubAuthProvider extends OAuthProvider {
27
27
static readonly GITHUB_SIGN_IN_METHOD = externs . SignInMethod . GITHUB ;
28
28
static readonly PROVIDER_ID = externs . ProviderId . GITHUB ;
29
-
29
+
30
30
constructor ( ) {
31
31
super ( externs . ProviderId . GITHUB ) ;
32
32
}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import { OAuthProvider } from './oauth';
27
27
export class GoogleAuthProvider extends OAuthProvider {
28
28
static readonly GOOGLE_SIGN_IN_METHOD = externs . SignInMethod . GOOGLE ;
29
29
static readonly PROVIDER_ID = externs . ProviderId . GOOGLE ;
30
-
30
+
31
31
constructor ( ) {
32
32
super ( externs . ProviderId . GOOGLE ) ;
33
33
}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ import { OAuthProvider } from './oauth';
44
44
export class TwitterAuthProvider extends OAuthProvider {
45
45
static readonly TWITTER_SIGN_IN_METHOD = externs . SignInMethod . TWITTER ;
46
46
static readonly PROVIDER_ID = externs . ProviderId . TWITTER ;
47
-
47
+
48
48
constructor ( ) {
49
49
super ( externs . ProviderId . TWITTER ) ;
50
50
}
You can’t perform that action at this time.
0 commit comments