forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjest.setup.ts
39 lines (37 loc) · 867 Bytes
/
jest.setup.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import * as ReactNative from 'react-native';
jest.doMock('react-native', () => {
return Object.setPrototypeOf(
{
Platform: {
OS: 'android',
select: () => {},
},
NativeModules: {
...ReactNative.NativeModules,
RNFBAppModule: {
NATIVE_FIREBASE_APPS: [
{
appConfig: {
name: '[DEFAULT]',
},
options: {},
},
{
appConfig: {
name: 'secondaryFromNative',
},
options: {},
},
],
},
RNFBPerfModule: {},
RNFBAdMobModule: {},
RNFBAdMobInterstitialModule: {},
RNFBAdMobRewardedModule: {},
RNFBAdsConsentModule: {},
RNFBCrashlyticsModule: {},
},
},
ReactNative,
);
});