@@ -65,7 +65,7 @@ describe('Firebase App Check > Service', () => {
65
65
66
66
it (
67
67
'activate("string") calls modular initializeAppCheck() with a ' +
68
- 'ReCaptchaV3Provider' ,
68
+ 'ReCaptchaV3Provider' ,
69
69
( ) => {
70
70
const initializeAppCheckStub = stub ( appCheckExp , 'initializeAppCheck' ) ;
71
71
service = new AppCheckService ( app ) ;
@@ -80,7 +80,7 @@ describe('Firebase App Check > Service', () => {
80
80
81
81
it (
82
82
'activate({getToken: () => token}) calls modular initializeAppCheck() with' +
83
- ' a CustomProvider' ,
83
+ ' a CustomProvider' ,
84
84
( ) => {
85
85
const initializeAppCheckStub = stub ( appCheckExp , 'initializeAppCheck' ) ;
86
86
service = new AppCheckService ( app ) ;
@@ -105,7 +105,7 @@ describe('Firebase App Check > Service', () => {
105
105
106
106
it (
107
107
'activate(new RecaptchaV3Provider(...)) calls modular initializeAppCheck() with' +
108
- ' a RecaptchaV3Provider' ,
108
+ ' a RecaptchaV3Provider' ,
109
109
( ) => {
110
110
const initializeAppCheckStub = stub ( appCheckExp , 'initializeAppCheck' ) ;
111
111
service = new AppCheckService ( app ) ;
@@ -120,7 +120,7 @@ describe('Firebase App Check > Service', () => {
120
120
121
121
it (
122
122
'activate(new CustomProvider(...)) calls modular initializeAppCheck() with' +
123
- ' a CustomProvider' ,
123
+ ' a CustomProvider' ,
124
124
( ) => {
125
125
const initializeAppCheckStub = stub ( appCheckExp , 'initializeAppCheck' ) ;
126
126
service = new AppCheckService ( app ) ;
@@ -198,7 +198,7 @@ describe('Firebase App Check > Service', () => {
198
198
199
199
it ( 'onTokenChanged() throws if activate() has not been called' , async ( ) => {
200
200
service = createTestService ( app ) ;
201
- expect ( ( ) => service . onTokenChanged ( ( ) => { } ) ) . to . throw (
201
+ expect ( ( ) => service . onTokenChanged ( ( ) => { } ) ) . to . throw (
202
202
AppCheckError . USE_BEFORE_ACTIVATION
203
203
) ;
204
204
} ) ;
0 commit comments