I am using testing-library/react-native for testing but problem is
RNEncryptedStorage is undefined
at Object.<anonymous> (node_modules/react-native-encrypted-storage/lib/commonjs/EncryptedStorage.ts:7:9)
at Object.<anonymous> (node_modules/react-native-encrypted-storage/lib/commonjs/index.ts:1:1)
Code :-
test('Videos should render OK', async () => {
const {getByText, getByTestId, getAllByTestId, queryByText} = render(
<Videos />,
);