diff --git a/src/components/Tooltip/utils.ts b/src/components/Tooltip/utils.ts index 7d6c0a944..7ba8fd94a 100644 --- a/src/components/Tooltip/utils.ts +++ b/src/components/Tooltip/utils.ts @@ -5,6 +5,6 @@ export const hoverOnTooltips = async ({ canvasElement }: { canvasElement: HTMLEl const buttons = canvas.getAllByTestId('button'); buttons.forEach((button) => { - fireEvent.mouseEnter(button); + fireEvent.mouseOver(button); }); };