BlueWallet/tests/setup.js

96 lines
2.3 KiB
JavaScript
Raw Normal View History

2020-06-29 15:58:43 +03:00
/* global jest */
2019-10-21 11:13:16 -04:00
jest.mock('react-native-watch-connectivity', () => {
return {
getIsWatchAppInstalled: jest.fn(() => Promise.resolve(false)),
2019-10-21 11:13:16 -04:00
subscribeToMessages: jest.fn(),
updateApplicationContext: jest.fn(),
2020-06-29 15:58:43 +03:00
};
});
jest.mock('react-native-secure-key-store', () => {
return {
setResetOnAppUninstallTo: jest.fn(),
2020-06-29 15:58:43 +03:00
};
});
2020-07-31 14:43:55 +01:00
jest.mock('@react-native-community/push-notification-ios', () => {
return {};
});
jest.mock('react-native-device-info', () => {
2020-08-10 20:27:14 -04:00
return {
getSystemName: jest.fn(),
};
2020-07-31 14:43:55 +01:00
});
jest.mock('react-native-quick-actions', () => {
return {
clearShortcutItems: jest.fn(),
setQuickActions: jest.fn(),
isSupported: jest.fn(),
2020-06-29 15:58:43 +03:00
};
});
2020-08-10 20:21:28 -04:00
jest.mock('react-native-image-picker', () => {
return {
launchCamera: jest.fn(),
launchImageLibrary: jest.fn(),
};
});
jest.mock('react-native-default-preference', () => {
return {
setName: jest.fn(),
set: jest.fn(),
2020-06-29 15:58:43 +03:00
};
});
2020-02-25 12:36:49 +00:00
jest.mock('react-native-fs', () => {
return {
mkdir: jest.fn(),
moveFile: jest.fn(),
copyFile: jest.fn(),
pathForBundle: jest.fn(),
pathForGroup: jest.fn(),
getFSInfo: jest.fn(),
getAllExternalFilesDirs: jest.fn(),
unlink: jest.fn(),
exists: jest.fn(),
stopDownload: jest.fn(),
resumeDownload: jest.fn(),
isResumable: jest.fn(),
stopUpload: jest.fn(),
completeHandlerIOS: jest.fn(),
readDir: jest.fn(),
readDirAssets: jest.fn(),
existsAssets: jest.fn(),
readdir: jest.fn(),
setReadable: jest.fn(),
stat: jest.fn(),
readFile: jest.fn(),
read: jest.fn(),
readFileAssets: jest.fn(),
hash: jest.fn(),
copyFileAssets: jest.fn(),
copyFileAssetsIOS: jest.fn(),
copyAssetsVideoIOS: jest.fn(),
writeFile: jest.fn(),
appendFile: jest.fn(),
write: jest.fn(),
downloadFile: jest.fn(),
uploadFiles: jest.fn(),
touch: jest.fn(),
MainBundlePath: jest.fn(),
CachesDirectoryPath: jest.fn(),
DocumentDirectoryPath: jest.fn(),
ExternalDirectoryPath: jest.fn(),
ExternalStorageDirectoryPath: jest.fn(),
TemporaryDirectoryPath: jest.fn(),
LibraryDirectoryPath: jest.fn(),
PicturesDirectoryPath: jest.fn(),
2020-06-29 15:58:43 +03:00
};
});
jest.mock('react-native-gesture-handler', () => jest.requireActual('react-native-gesture-handler/__mocks__/RNGestureHandlerModule.js'));