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 6f00466 commit 3a27d31Copy full SHA for 3a27d31
__mocks__/react-native.js
@@ -31,6 +31,10 @@ const Animated = {
31
View: View
32
};
33
34
+const I18nManager = {
35
+ isRTL: false,
36
+};
37
+
38
const Text = () => "Text";
39
const TouchableHighlight = () => false;
40
const TouchableWithoutFeedback = () => false;
@@ -55,6 +59,7 @@ ReactNative.ToolbarAndroid = ToolbarAndroid;
55
59
ReactNative.Image = Image;
56
60
ReactNative.AppRegistry = AppRegistry;
57
61
ReactNative.Animated = Animated;
62
+ReactNative.I18nManager = I18nManager;
58
63
ReactNative.Platform = Platform;
64
65
module.exports = ReactNative;
0 commit comments