1export const hideMenu = jest.fn();
2export const reloadAsync = jest.fn();
3export const toggleDebugRemoteJSAsync = jest.fn();
4export const toggleElementInspectorAsync = jest.fn();
5export const toggleFastRefreshAsync = jest.fn();
6export const togglePerformanceMonitorAsync = jest.fn();
7export const copyToClipboardAsync = jest.fn().mockResolvedValue({});
8
9export const subscribeToOpenEvents = jest.fn(() => {
10  return {
11    remove: () => {},
12  };
13});
14
15export const subscribeToCloseEvents = jest.fn(() => {
16  return {
17    remove: () => {},
18  };
19});
20