File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/rules-unit-testing/src/api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ export type FirebaseEmulatorOptions = {
160
160
161
161
function trimmedBase64Encode ( val : string ) : string {
162
162
// Use base64url encoding and remove padding in the end (dot characters).
163
- return base64Encode ( val ) . replace ( / \. / g, "" ) ;
163
+ return base64Encode ( val ) . replace ( / \. / g, '' ) ;
164
164
}
165
165
166
166
function createUnsecuredJwt ( token : TokenOptions , projectId ?: string ) : string {
@@ -498,7 +498,7 @@ function initializeApp(
498
498
ComponentType . PRIVATE
499
499
) ;
500
500
501
- ( ( app as unknown ) as _FirebaseApp ) . _addOrOverwriteComponent (
501
+ ( app as unknown as _FirebaseApp ) . _addOrOverwriteComponent (
502
502
mockAuthComponent
503
503
) ;
504
504
}
@@ -703,7 +703,7 @@ export function assertFails(pr: Promise<any>): any {
703
703
errCode === 'permission-denied' ||
704
704
errCode === 'permission_denied' ||
705
705
errMessage . indexOf ( 'permission_denied' ) >= 0 ||
706
- errMessage . indexOf ( 'permission denied' ) >= 0 ||
706
+ errMessage . indexOf ( 'permission denied' ) >= 0 ||
707
707
// Storage permission errors contain message: (storage/unauthorized)
708
708
errMessage . indexOf ( 'unauthorized' ) >= 0 ;
709
709
You can’t perform that action at this time.
0 commit comments