From 1e53d9095149fa451fa658ede514788a8f34a046 Mon Sep 17 00:00:00 2001 From: Hasan Genc Date: Wed, 29 Apr 2020 17:29:14 +0300 Subject: [PATCH] Fix tests --- __tests__/arrow.spec.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();