Daniel Moya
Daniel Moya
I'm getting also the same
@roberthewitt @tomyates You just need to mock the functions your code it's using. I tried following and it worked for me ``` javascript jest.mock('react-native-orientation-locker', () => ({ lockToLandscapeRight: jest.fn(), unlockAllOrientations:...
Same over here!
any news on this ?
Any updates for this Issue ?
> @daniel-moya I discovered that this issue was happening due to improper mocking of `react-native-safe-area-context`. > > Adding the following to mocks fixed the issue for me: > > ```...