import { Dimensions } from 'react-native'; const DEFAULT_DIMENSIONS = { width: 390, height: 844, }; export const setOrientation = (orientation: 'portrait' | 'landscape') => { jest.spyOn(Dimensions, 'get').mockImplementation(() => ({ width: orientation === 'landscape' ? DEFAULT_DIMENSIONS.height : DEFAULT_DIMENSIONS.width, height: orientation === 'landscape' ? DEFAULT_DIMENSIONS.width : DEFAULT_DIMENSIONS.height, scale: 1, fontScale: 1, })); };