We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f127bd commit 9c35069Copy full SHA for 9c35069
package.json
@@ -67,7 +67,7 @@
67
"pod-install": "^0.1.38",
68
"prettier": "^2.7.1",
69
"react": "^16.8.6",
70
- "react-native": "^0.60.0",
+ "react-native": "^0.66.0",
71
"react-native-navigation": "7.29.1",
72
"react-navigation": "^4.4.4",
73
"rollup": "^3.9.1",
test/setup.ts
@@ -15,12 +15,13 @@ nock.disableNetConnect();
15
16
beforeEach(() => {
17
IBGEventEmitter.removeAllListeners();
18
- Platform.constants = {
+
19
+ jest.spyOn(Platform, 'constants', 'get').mockReturnValue({
20
isTesting: true,
21
reactNativeVersion: {
22
major: 0,
23
minor: 60,
24
patch: 0,
25
},
- };
26
+ });
27
});
0 commit comments