Skip to content

Commit

Permalink
Use correct mock
Browse files Browse the repository at this point in the history
  • Loading branch information
adhityamamallan committed Sep 20, 2024
1 parent ae3dfd9 commit 7e9a9dd
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jest.mock('../../workflow-queries-tile-input/workflow-queries-tile-input', () =>
jest.fn(() => <div>Mock input</div>)
);

jest.mock('../../workflow-queries-tile-icon/workflow-queries-tile-icon', () =>
jest.fn(() => <div>Mock icon</div>)
jest.mock(
'../../workflow-queries-status-icon/workflow-queries-status-icon',
() => jest.fn(() => <div>Mock icon</div>)
);

describe(WorkflowQueriesTile.name, () => {
Expand Down

0 comments on commit 7e9a9dd

Please sign in to comment.