diff --git a/__mocks__/react-native-safe-area-context.ts b/__mocks__/react-native-safe-area-context.ts index 5a37d5e..47ff8d4 100644 --- a/__mocks__/react-native-safe-area-context.ts +++ b/__mocks__/react-native-safe-area-context.ts @@ -1,3 +1,10 @@ +export const useSafeAreaFrame = jest.fn(() => ({ + height: 896, + width: 414, + x: 0, + y: 0, +})) + export const useSafeAreaInsets = jest.fn(() => ({ top: 0, right: 0,