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.
16 lines
446 B
16 lines
446 B
5 years ago
|
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 onClick={onClick} />);
|
||
|
|
||
|
fireEvent.click(getByRole('button'));
|
||
|
expect(onClick).toHaveBeenCalled();
|
||
|
});
|
||
|
});
|