Files
react-native-firebase/jest.setup.js
2020-04-24 16:57:47 +01:00

27 lines
519 B
JavaScript

import * as ReactNative from 'react-native';
jest.doMock('react-native', () => {
return Object.setPrototypeOf(
{
Platform: {
OS: 'android',
},
NativeModules: {
...ReactNative.NativeModules,
RNFBAppModule: {
NATIVE_FIREBASE_APPS: [
{
appConfig: {
name: '[DEFAULT]',
},
options: {},
},
],
},
RNFBPerfModule: {},
},
},
ReactNative,
);
});