54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
import 'react-native-gesture-handler/jestSetup'
|
|
jest.mock('@react-native-async-storage/async-storage', () =>
|
|
require('@react-native-async-storage/async-storage/jest/async-storage-mock'),
|
|
)
|
|
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter')
|
|
|
|
// Silence the warning: Animated: `useNativeDriver` is not supported
|
|
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper')
|
|
require('react-native-reanimated/lib/reanimated2/jestUtils').setUpTests()
|
|
|
|
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),
|
|
}
|
|
})
|
|
|
|
jest.mock('@gorhom/bottom-sheet', () => {
|
|
const react = require('react-native')
|
|
return {
|
|
__esModule: true,
|
|
default: react.View,
|
|
namedExport: {
|
|
...require('react-native-reanimated/mock'),
|
|
...jest.requireActual('@gorhom/bottom-sheet'),
|
|
BottomSheetFlatList: react.FlatList,
|
|
},
|
|
}
|
|
})
|
|
|
|
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(),
|
|
}))
|
|
|
|
import {View as mockedView} from 'react-native'
|
|
jest.mock('react-native-tab-view', () => ({
|
|
...jest.requireActual('react-native-tab-view'),
|
|
TabView: mockedView,
|
|
}))
|