diff --git a/__mocks__/react-native-bootsplash.js b/__mocks__/react-native-bootsplash.js new file mode 100644 index 000000000000..10e6ef722e75 --- /dev/null +++ b/__mocks__/react-native-bootsplash.js @@ -0,0 +1,5 @@ +export default { + hide: jest.fn().mockResolvedValueOnce(), + show: jest.fn().mockResolvedValueOnce(), + getVisibilityStatus: jest.fn().mockResolvedValue('hidden'), +};