File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -158,8 +158,8 @@ dependencies {
158158 const config = createMockConfig ( 'com.example.myapp' ) ;
159159 withAndroidPushNotifications ( config as any , { } as any ) ;
160160
161- const gradleWriteCall = writeFileSyncSpy . mock . calls . find (
162- ( call : any [ ] ) => ( call [ 0 ] as string ) . includes ( 'build.gradle' )
161+ const gradleWriteCall = writeFileSyncSpy . mock . calls . find ( ( call : any [ ] ) =>
162+ ( call [ 0 ] as string ) . includes ( 'build.gradle' )
163163 ) ;
164164 expect ( gradleWriteCall ) . toBeDefined ( ) ;
165165 expect ( gradleWriteCall [ 1 ] ) . toContain ( 'firebase-messaging' ) ;
@@ -172,8 +172,8 @@ dependencies {
172172 const config = createMockConfig ( 'com.example.myapp' ) ;
173173 withAndroidPushNotifications ( config as any , { } as any ) ;
174174
175- const gradleWriteCall = writeFileSyncSpy . mock . calls . find (
176- ( call : any [ ] ) => ( call [ 0 ] as string ) . includes ( 'build.gradle' )
175+ const gradleWriteCall = writeFileSyncSpy . mock . calls . find ( ( call : any [ ] ) =>
176+ ( call [ 0 ] as string ) . includes ( 'build.gradle' )
177177 ) ;
178178 expect ( gradleWriteCall ) . toBeUndefined ( ) ;
179179 } ) ;
You can’t perform that action at this time.
0 commit comments