@@ -18,7 +18,7 @@ const responses = {
18
18
microsoft : { id : 'userId' , mail : 'userMail' } ,
19
19
} ;
20
20
21
- fdescribe ( 'AuthenticationProviders' , function ( ) {
21
+ describe ( 'AuthenticationProviders' , function ( ) {
22
22
[
23
23
'apple' ,
24
24
'gcenter' ,
@@ -605,7 +605,7 @@ fdescribe('AuthenticationProviders', function () {
605
605
} ) ;
606
606
} ) ;
607
607
608
- fdescribe ( 'instagram auth adapter' , ( ) => {
608
+ describe ( 'instagram auth adapter' , ( ) => {
609
609
const instagram = require ( '../lib/Adapters/Auth/instagram' ) ;
610
610
const httpsRequest = require ( '../lib/Adapters/Auth/httpsRequest' ) ;
611
611
@@ -645,7 +645,7 @@ fdescribe('instagram auth adapter', () => {
645
645
} ) ;
646
646
} ) ;
647
647
648
- fdescribe ( 'google auth adapter' , ( ) => {
648
+ describe ( 'google auth adapter' , ( ) => {
649
649
const google = require ( '../lib/Adapters/Auth/google' ) ;
650
650
const jwt = require ( 'jsonwebtoken' ) ;
651
651
const authUtils = require ( '../lib/Adapters/Auth/utils' ) ;
@@ -767,7 +767,7 @@ fdescribe('google auth adapter', () => {
767
767
} ) ;
768
768
} ) ;
769
769
770
- fdescribe ( 'google play games service auth' , ( ) => {
770
+ describe ( 'google play games service auth' , ( ) => {
771
771
const gpgames = require ( '../lib/Adapters/Auth/gpgames' ) ;
772
772
const httpsRequest = require ( '../lib/Adapters/Auth/httpsRequest' ) ;
773
773
@@ -796,7 +796,7 @@ fdescribe('google play games service auth', () => {
796
796
} ) ;
797
797
} ) ;
798
798
799
- fdescribe ( 'keycloak auth adapter' , ( ) => {
799
+ describe ( 'keycloak auth adapter' , ( ) => {
800
800
const keycloak = require ( '../lib/Adapters/Auth/keycloak' ) ;
801
801
const httpsRequest = require ( '../lib/Adapters/Auth/httpsRequest' ) ;
802
802
@@ -1024,7 +1024,7 @@ fdescribe('keycloak auth adapter', () => {
1024
1024
} ) ;
1025
1025
} ) ;
1026
1026
1027
- fdescribe ( 'oauth2 auth adapter' , ( ) => {
1027
+ describe ( 'oauth2 auth adapter' , ( ) => {
1028
1028
const oauth2 = require ( '../lib/Adapters/Auth/oauth2' ) ;
1029
1029
const httpsRequest = require ( '../lib/Adapters/Auth/httpsRequest' ) ;
1030
1030
@@ -1451,7 +1451,7 @@ fdescribe('oauth2 auth adapter', () => {
1451
1451
} ) ;
1452
1452
} ) ;
1453
1453
1454
- fdescribe ( 'apple signin auth adapter' , ( ) => {
1454
+ describe ( 'apple signin auth adapter' , ( ) => {
1455
1455
const apple = require ( '../lib/Adapters/Auth/apple' ) ;
1456
1456
const jwt = require ( 'jsonwebtoken' ) ;
1457
1457
const util = require ( 'util' ) ;
@@ -1778,7 +1778,7 @@ fdescribe('apple signin auth adapter', () => {
1778
1778
} ) ;
1779
1779
} ) ;
1780
1780
1781
- fdescribe ( 'Apple Game Center Auth adapter' , ( ) => {
1781
+ describe ( 'Apple Game Center Auth adapter' , ( ) => {
1782
1782
const gcenter = require ( '../lib/Adapters/Auth/gcenter' ) ;
1783
1783
const fs = require ( 'fs' ) ;
1784
1784
const testCert = fs . readFileSync ( __dirname + '/support/cert/game_center.pem' ) ;
@@ -1974,7 +1974,7 @@ fdescribe('Apple Game Center Auth adapter', () => {
1974
1974
} ) ;
1975
1975
} ) ;
1976
1976
1977
- fdescribe ( 'phant auth adapter' , ( ) => {
1977
+ describe ( 'phant auth adapter' , ( ) => {
1978
1978
const httpsRequest = require ( '../lib/Adapters/Auth/httpsRequest' ) ;
1979
1979
1980
1980
it ( 'validateAuthData should throw for invalid auth' , async ( ) => {
@@ -1994,7 +1994,7 @@ fdescribe('phant auth adapter', () => {
1994
1994
} ) ;
1995
1995
} ) ;
1996
1996
1997
- fdescribe ( 'microsoft graph auth adapter' , ( ) => {
1997
+ describe ( 'microsoft graph auth adapter' , ( ) => {
1998
1998
const microsoft = require ( '../lib/Adapters/Auth/microsoft' ) ;
1999
1999
const httpsRequest = require ( '../lib/Adapters/Auth/httpsRequest' ) ;
2000
2000
@@ -2022,7 +2022,7 @@ fdescribe('microsoft graph auth adapter', () => {
2022
2022
} ) ;
2023
2023
} ) ;
2024
2024
2025
- fdescribe ( 'facebook limited auth adapter' , ( ) => {
2025
+ describe ( 'facebook limited auth adapter' , ( ) => {
2026
2026
const facebook = require ( '../lib/Adapters/Auth/facebook' ) ;
2027
2027
const jwt = require ( 'jsonwebtoken' ) ;
2028
2028
const util = require ( 'util' ) ;
0 commit comments