flyerhq/react-native-keyboard-accessory-view

View on GitHub
__mocks__/react-native-safe-area-context.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const useSafeAreaFrame = jest.fn(() => ({
  height: 896,
  width: 414,
  x: 0,
  y: 0,
}))

export const useSafeAreaInsets = jest.fn(() => ({
  bottom: 34,
  left: 0,
  right: 0,
  top: 0,
}))