chaawlaapooja
chaawlaapooja
Just want to add my name to the list of people who require this feature. This is a blocker for my project.
I have wrapped `gestureHandlerRootHOC` from `react-native-gesture-handler` but this does not fix the issue. It is working fine on iOS but has issues on android. Can you help? @lidord-wix
@ray0925 in your jest config file, mock react-native-keychain as follows `jest.mock('react-native-keychain', () => ({ SECURITY_LEVEL_ANY: 'MOCK_SECURITY_LEVEL_ANY', SECURITY_LEVEL_SECURE_SOFTWARE: 'MOCK_SECURITY_LEVEL_SECURE_SOFTWARE', SECURITY_LEVEL_SECURE_HARDWARE: 'MOCK_SECURITY_LEVEL_SECURE_HARDWARE', setGenericPassword: jest.fn().mockResolvedValue(), getGenericPassword: jest.fn().mockResolvedValue(), resetGenericPassword: jest.fn().mockResolvedValue(), getInternetCredentials: jest.fn().mockResolvedValue(true), getSupportedBiometryType: jest.fn().mockResolvedValue(true),...