1f6acc11ab
* package upgrades
* upgrade system ui
* update patches
* rename patch
* rm
* use .set/.set
* resolve yarnlock
* fix accidentally removed package
* fix use permissions hook
* fix some type errors
* type fixes
* more tweaking
* clean
* Discard changes to src/screens/Onboarding/StepProfile/index.tsx
* oops
* fix splash
* use ios/android in config
* Fix tests
* add back patch
* add to rn patch
* fullscreen?
* Revert "add to rn patch"
This reverts commit 4716d2c643.
* try this
* test with revert
* test
* maybe this
* fix config
* Bump @react-native-picker/picker
* Bump some packages
* Rm unused
* Update lockfile
* Rename expo-notifications+0.29.8.patch.md to expo-notifications+0.29.10.patch.md
* Update react-native+0.76.3.patch.md
* Update react-native+0.76.3.patch.md
* Inline splash configs
Jumping around the file is annoying and makes it harder to understand how this is structured.
* Start fixing Android splash
* Downgrade compressor
This version isn't building for me due to https://github.com/numandev1/react-native-compressor/issues/322.
* Make Android splash empty for now
* Work around a bug
* Bump the compressor
* Bump again
* Include splash fixes
* Try updating
* No custom Android splash
* Revert to using icons
* welp
* Fix sizes
* Make sizing work
* Bump size
---------
Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
108 lines
2.6 KiB
JavaScript
108 lines
2.6 KiB
JavaScript
/* global jest */
|
|
import 'react-native-gesture-handler/jestSetup'
|
|
// IMPORTANT: this is what's used in the native runtime
|
|
import 'react-native-url-polyfill/auto'
|
|
|
|
import {configure} from '@testing-library/react-native'
|
|
|
|
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,
|
|
}
|
|
})
|
|
|
|
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('rn-fetch-blob', () => ({
|
|
config: jest.fn().mockReturnThis(),
|
|
cancel: jest.fn(),
|
|
fetch: jest.fn(),
|
|
}))
|
|
|
|
jest.mock('expo-file-system', () => ({
|
|
getInfoAsync: jest.fn().mockResolvedValue({exists: true, size: 100}),
|
|
deleteAsync: jest.fn(),
|
|
}))
|
|
|
|
jest.mock('expo-image-manipulator', () => ({
|
|
manipulateAsync: jest.fn().mockResolvedValue({
|
|
uri: 'file://resized-image',
|
|
}),
|
|
SaveFormat: {
|
|
JPEG: 'jpeg',
|
|
},
|
|
}))
|
|
|
|
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(),
|
|
},
|
|
}))
|
|
|
|
jest.mock('crypto', () => ({}))
|
|
|
|
jest.mock('expo-application', () => ({
|
|
nativeApplicationVersion: '1.0.0',
|
|
nativeBuildVersion: '1',
|
|
}))
|
|
|
|
jest.mock('expo-modules-core', () => ({
|
|
requireNativeModule: jest.fn().mockImplementation(moduleName => {
|
|
if (moduleName === 'ExpoPlatformInfo') {
|
|
return {
|
|
getIsReducedMotionEnabled: () => false,
|
|
}
|
|
}
|
|
if (moduleName === 'BottomSheet') {
|
|
return {
|
|
dismissAll: () => {},
|
|
}
|
|
}
|
|
}),
|
|
requireNativeViewManager: jest.fn().mockImplementation(moduleName => {
|
|
return () => null
|
|
}),
|
|
}))
|