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