Merge pull request #7337 from BlueWallet/trdd

Delete react-native-tor.ts
This commit is contained in:
GLaDOS 2024-11-21 13:26:12 +00:00 committed by GitHub
commit d4d21e9ad4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,17 +0,0 @@
/* global jest */
export const startIfNotStarted = jest.fn(async (key, value, callback) => {
return 666;
});
export const get = jest.fn();
export const post = jest.fn();
export const deleteMock = jest.fn();
export const stopIfRunning = jest.fn();
export const getDaemonStatus = jest.fn();
const mock = jest.fn().mockImplementation(() => {
return { startIfNotStarted, get, post, delete: deleteMock, stopIfRunning, getDaemonStatus };
});
export default mock;