You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
463 B
15 lines
463 B
import React from 'react'; |
|
import { render, cleanup, fireEvent } from '@testing-library/react'; |
|
import { Arrow } from '../src/components/arrow'; |
|
|
|
describe('<Arrow />', () => { |
|
afterEach(cleanup); |
|
|
|
it('should call onClick prop when click event occurs', async () => { |
|
const onClick = jest.fn(); |
|
const { getByRole } = render(<Arrow direction="left" onClick={onClick} />); |
|
|
|
fireEvent.click(getByRole('button')); |
|
expect(onClick).toHaveBeenCalled(); |
|
}); |
|
});
|
|
|