diff --git a/__tests__/arrow.spec.tsx b/__tests__/arrow.spec.tsx index 75dd27f..a99f866 100644 --- a/__tests__/arrow.spec.tsx +++ b/__tests__/arrow.spec.tsx @@ -7,7 +7,7 @@ describe('', () => { it('should call onClick prop when click event occurs', async () => { const onClick = jest.fn(); - const { getByRole } = render(); + const { getByRole } = render(); fireEvent.click(getByRole('button')); expect(onClick).toHaveBeenCalled();