Skip to content

Commit

Permalink
(chore) More missing mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
brandones committed Apr 30, 2024
1 parent 8e616e5 commit 9fd3cb6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/framework/esm-framework/mock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ export const usePatientPhoto = jest.fn(() => ({
data: null,
error: null,
}));

export const ActionMenuButton = jest.fn(({ handler }) => <button onClick={handler}>Action Menu Button</button>);
export const ActionMenu = jest.fn(() => <div>Action Menu</div>);
export const WorkspaceWindow = jest.fn(() => <div>Workspace Window</div>);
export const WorkspaceOverlay = jest.fn(() => <div>Workspace Overlay</div>);
export const closeWorkspace = jest.fn();
export const launchWorkspace = jest.fn();
export const navigateAndLaunchWorkspace = jest.fn();
Expand Down

0 comments on commit 9fd3cb6

Please sign in to comment.