@@ -76,7 +76,6 @@ jest.mock('expo-location', () => ({
7676
7777// Needed for: https://stackoverflow.com/questions/76903168/mocking-libraries-in-jest
7878jest . mock ( 'react-native/Libraries/LogBox/LogBox' , ( ) => ( {
79- // eslint-disable-next-line @typescript-eslint/naming-convention
8079 __esModule : true ,
8180 default : {
8281 ignoreLogs : jest . fn ( ) ,
@@ -149,7 +148,6 @@ jest.mock('@libs/scheduleOnLiveMarkdownRuntime', () => {
149148} ) ;
150149
151150jest . mock ( '@src/setup/telemetry' , ( ) => ( {
152- // eslint-disable-next-line @typescript-eslint/naming-convention
153151 __esModule : true ,
154152 default : jest . fn ( ) ,
155153 navigationIntegration : {
@@ -280,7 +278,6 @@ jest.mock(
280278) ;
281279
282280jest . mock ( '@libs/prepareRequestPayload/index.native.ts' , ( ) => ( {
283- // eslint-disable-next-line @typescript-eslint/naming-convention
284281 __esModule : true ,
285282 default : jest . fn ( ( command : string , data : Record < string , unknown > ) => {
286283 const formData = new FormData ( ) ;
@@ -303,7 +300,6 @@ jest.mock('@libs/prepareRequestPayload/index.native.ts', () => ({
303300jest . mock ( '@components/ConfirmedRoute.tsx' ) ;
304301
305302jest . mock ( '@src/hooks/useWorkletStateMachine/runOnUISync' , ( ) => ( {
306- // eslint-disable-next-line @typescript-eslint/naming-convention
307303 __esModule : true ,
308304 default : jest . fn ( ( ) => jest . fn ( ) ) , // Return a function that returns a function
309305} ) ) ;
@@ -367,17 +363,14 @@ jest.mock('@src/components/KeyboardDismissibleFlatList/KeyboardDismissibleFlatLi
367363// in triggerUnreadUpdate (also timer-based), this creates excessive timer churn that causes
368364// heavy integration tests like SessionTest to exceed their timeout.
369365jest . mock ( '@src/hooks/useDocumentTitle' , ( ) => ( {
370- // eslint-disable-next-line @typescript-eslint/naming-convention
371366 __esModule : true ,
372367 default : jest . fn ( ) ,
373368} ) ) ;
374369jest . mock ( '@src/hooks/useWorkspaceDocumentTitle' , ( ) => ( {
375- // eslint-disable-next-line @typescript-eslint/naming-convention
376370 __esModule : true ,
377371 default : jest . fn ( ) ,
378372} ) ) ;
379373jest . mock ( '@src/hooks/useDomainDocumentTitle' , ( ) => ( {
380- // eslint-disable-next-line @typescript-eslint/naming-convention
381374 __esModule : true ,
382375 default : jest . fn ( ) ,
383376} ) ) ;
0 commit comments