84caf1e8d8
* remove unused packages, switch to `expo-linear-gradient` * upgrade expo deps * rm blur view * re-add normalize-url * replace `react-native-version-number` with `expo-application` * add `expo-haptics` * rm `react-native-haptic-feedback` * migrate to `expo-haptics` * add `expo-clipboard` * migrate to `expo-clipboard` * add `expo-file-system` * migrate to `expo-file-system` and `expo-image-manipulator` passing tests remove other `react-native-fs` usages move to `expo-image-manipulator` for resizes remove react-native-image-resizer update tests update jest setup simplify some logic properly cleanup files migrate file downloads to `expo-file-system` rm `rn-fetch-blob` * delete file after uploading blob on native * fix file move error * add `react-native-date-picker` * rm `@reactnativecommunity/datetimepicker` * migrate to `react-native-date-picker` * use modal on android * fix android alf * use @discord/bottom-sheet * rm some patches * remove expo-dev-client * rm metro config changes that have been merged * Working build * ignore error for now * ignore error for now * add newArchEnabled flag * add types/invariant
96 lines
2.4 KiB
JavaScript
96 lines
2.4 KiB
JavaScript
/* global jest */
|
|
import {configure} from '@testing-library/react-native'
|
|
import 'react-native-gesture-handler/jestSetup'
|
|
|
|
// IMPORTANT: this is what's used in the native runtime
|
|
import 'react-native-url-polyfill/auto'
|
|
|
|
configure({asyncUtilTimeout: 20000})
|
|
|
|
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', () => {
|
|
const {EventEmitter} = require('events')
|
|
return {
|
|
__esModule: true,
|
|
default: EventEmitter,
|
|
}
|
|
})
|
|
|
|
// Silence the warning: Animated: `useNativeDriver` is not supported
|
|
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper')
|
|
|
|
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('expo-file-system', () => ({
|
|
createDownloadResumable: jest.fn(),
|
|
deleteAsync: jest.fn(),
|
|
getInfoAsync: jest.fn().mockResolvedValue({
|
|
size: 100,
|
|
}),
|
|
}))
|
|
|
|
jest.mock('expo-image-manipulator', () => ({
|
|
manipulateAsync: jest.fn().mockResolvedValue({
|
|
uri: 'file://resized-image',
|
|
}),
|
|
SaveFormat: jest.requireActual('expo-image-manipulator').SaveFormat,
|
|
}))
|
|
|
|
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(),
|
|
}),
|
|
}))
|
|
|
|
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]),
|
|
}))
|
|
|
|
jest.mock('lande', () => ({
|
|
__esModule: true, // this property makes it work
|
|
default: jest.fn().mockReturnValue([['eng']]),
|
|
}))
|
|
|
|
jest.mock('sentry-expo', () => ({
|
|
init: () => jest.fn(),
|
|
Native: {
|
|
ReactNativeTracing: jest.fn().mockImplementation(() => ({
|
|
start: jest.fn(),
|
|
stop: jest.fn(),
|
|
})),
|
|
ReactNavigationInstrumentation: jest.fn(),
|
|
},
|
|
}))
|