2023-01-20 20:43:28 +01:00
|
|
|
/* global jest */
|
2023-01-17 17:06:00 +01:00
|
|
|
import 'react-native-gesture-handler/jestSetup'
|
2023-11-23 00:20:35 +01:00
|
|
|
// IMPORTANT: this is what's used in the native runtime
|
|
|
|
import 'react-native-url-polyfill/auto'
|
|
|
|
|
2024-05-29 03:15:35 +02:00
|
|
|
import {configure} from '@testing-library/react-native'
|
|
|
|
|
2023-02-22 21:23:57 +01:00
|
|
|
configure({asyncUtilTimeout: 20000})
|
|
|
|
|
2022-12-22 16:32:39 +01:00
|
|
|
jest.mock('@react-native-async-storage/async-storage', () =>
|
|
|
|
require('@react-native-async-storage/async-storage/jest/async-storage-mock'),
|
|
|
|
)
|
2023-02-22 21:23:57 +01:00
|
|
|
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter', () => {
|
|
|
|
const {EventEmitter} = require('events')
|
|
|
|
return {
|
|
|
|
__esModule: true,
|
|
|
|
default: EventEmitter,
|
|
|
|
}
|
|
|
|
})
|
2022-12-22 16:32:39 +01:00
|
|
|
|
2023-01-17 17:06:00 +01:00
|
|
|
// Silence the warning: Animated: `useNativeDriver` is not supported
|
|
|
|
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper')
|
|
|
|
|
2022-12-22 16:32:39 +01:00
|
|
|
jest.mock('@fortawesome/react-native-fontawesome', () => ({
|
|
|
|
FontAwesomeIcon: '',
|
|
|
|
}))
|
|
|
|
|
|
|
|
jest.mock('react-native-safe-area-context', () => {
|
|
|
|
const inset = {top: 0, right: 0, bottom: 0, left: 0}
|
|
|
|
return {
|
|
|
|
SafeAreaProvider: jest.fn().mockImplementation(({children}) => children),
|
|
|
|
SafeAreaConsumer: jest
|
|
|
|
.fn()
|
|
|
|
.mockImplementation(({children}) => children(inset)),
|
|
|
|
useSafeAreaInsets: jest.fn().mockImplementation(() => inset),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2023-01-17 17:06:00 +01:00
|
|
|
jest.mock('rn-fetch-blob', () => ({
|
|
|
|
config: jest.fn().mockReturnThis(),
|
|
|
|
cancel: jest.fn(),
|
|
|
|
fetch: jest.fn(),
|
|
|
|
}))
|
|
|
|
|
|
|
|
jest.mock('@bam.tech/react-native-image-resizer', () => ({
|
|
|
|
createResizedImage: jest.fn(),
|
|
|
|
}))
|
|
|
|
|
2023-01-24 20:58:35 +01:00
|
|
|
jest.mock('@segment/analytics-react-native', () => ({
|
|
|
|
createClient: () => ({
|
|
|
|
add: jest.fn(),
|
|
|
|
}),
|
|
|
|
useAnalytics: () => ({
|
|
|
|
track: jest.fn(),
|
|
|
|
identify: jest.fn(),
|
|
|
|
reset: jest.fn(),
|
|
|
|
group: jest.fn(),
|
|
|
|
screen: jest.fn(),
|
|
|
|
alias: jest.fn(),
|
|
|
|
flush: jest.fn(),
|
|
|
|
}),
|
|
|
|
}))
|
2023-02-22 21:23:57 +01:00
|
|
|
|
2023-03-13 22:01:43 +01:00
|
|
|
jest.mock('expo-camera', () => ({
|
|
|
|
Camera: {
|
|
|
|
useCameraPermissions: jest.fn(() => [true]),
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
|
|
|
|
jest.mock('expo-media-library', () => ({
|
|
|
|
__esModule: true, // this property makes it work
|
|
|
|
default: jest.fn(),
|
|
|
|
usePermissions: jest.fn(() => [true]),
|
|
|
|
}))
|
2023-04-03 19:11:06 +02:00
|
|
|
|
|
|
|
jest.mock('lande', () => ({
|
|
|
|
__esModule: true, // this property makes it work
|
|
|
|
default: jest.fn().mockReturnValue([['eng']]),
|
|
|
|
}))
|
2023-10-14 03:54:35 +02:00
|
|
|
|
|
|
|
jest.mock('sentry-expo', () => ({
|
|
|
|
init: () => jest.fn(),
|
|
|
|
Native: {
|
|
|
|
ReactNativeTracing: jest.fn().mockImplementation(() => ({
|
|
|
|
start: jest.fn(),
|
|
|
|
stop: jest.fn(),
|
|
|
|
})),
|
|
|
|
ReactNavigationInstrumentation: jest.fn(),
|
|
|
|
},
|
|
|
|
}))
|
2024-03-19 01:46:25 +01:00
|
|
|
|
|
|
|
jest.mock('crypto', () => ({}))
|
2024-05-29 03:15:35 +02:00
|
|
|
|
|
|
|
jest.mock('expo-application', () => ({
|
|
|
|
nativeApplicationVersion: '1.0.0',
|
|
|
|
nativeBuildVersion: '1',
|
|
|
|
}))
|