mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
922985f9ea
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
31 lines
845 B
TypeScript
31 lines
845 B
TypeScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { ContextMenu } from '../src';
|
|
import { items } from '../src/ContextMenu/data';
|
|
|
|
describe('ContextMenu', function () {
|
|
it('renders correctly', () => {
|
|
const { container } = render(
|
|
<ContextMenu
|
|
items={items}
|
|
onClick={() => {
|
|
// noop
|
|
}}
|
|
x={100}
|
|
y={100}
|
|
/>,
|
|
);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
it('should handle the click event', async () => {
|
|
const onClick = jest.fn();
|
|
render(
|
|
<ContextMenu items={items} onClick={onClick} x={100} y={100} visible />,
|
|
);
|
|
|
|
await userEvent.click(screen.getByRole('button', { name: 'Menu Item 1' }));
|
|
expect(onClick).toHaveBeenCalled();
|
|
});
|
|
});
|