'Firebase getReactNativePersistence not working during jest tests

When I test my React Native app that un my firebase config file

const auth = initializeAuth(app, {
    persistence: getReactNativePersistence(AsyncStorage),
});

I get the error message: Cannot find module '@firebase/auth/react-native' from 'node_modules/firebase/auth/react-native/dist/index.cjs.js'

The app works fine in runtime, but doesn't seem to work during tests.

Any ideas to what this error could be caused by?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source