2019-01-03 16:00:55 +03:00
|
|
|
import React from 'react';
|
2021-10-22 07:18:03 +03:00
|
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
import userEvent from '@testing-library/user-event';
|
2019-01-03 16:00:55 +03:00
|
|
|
import { ContextMenu } from '../src';
|
2020-09-02 20:30:47 +03:00
|
|
|
import { items } from '../src/ContextMenu/data';
|
2019-01-03 16:00:55 +03:00
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
describe('ContextMenu', function () {
|
2019-01-03 16:00:55 +03:00
|
|
|
it('renders correctly', () => {
|
2021-10-22 07:18:03 +03:00
|
|
|
const { container } = render(
|
2020-09-09 17:35:22 +03:00
|
|
|
<ContextMenu
|
|
|
|
items={items}
|
|
|
|
onClick={() => {
|
|
|
|
// noop
|
|
|
|
}}
|
|
|
|
x={100}
|
|
|
|
y={100}
|
|
|
|
/>
|
2019-01-03 16:00:55 +03:00
|
|
|
);
|
2021-10-22 07:18:03 +03:00
|
|
|
expect(container.firstChild).toMatchSnapshot();
|
2019-01-03 16:00:55 +03:00
|
|
|
});
|
|
|
|
it('should handle the click event', () => {
|
|
|
|
const onClick = jest.fn();
|
2021-10-22 07:18:03 +03:00
|
|
|
render(
|
|
|
|
<ContextMenu items={items} onClick={onClick} x={100} y={100} visible />
|
2019-01-10 21:51:14 +03:00
|
|
|
);
|
2019-01-03 16:00:55 +03:00
|
|
|
|
2021-10-22 07:18:03 +03:00
|
|
|
userEvent.click(screen.getByRole('button', { name: 'Menu Item 1' }));
|
|
|
|
expect(onClick).toHaveBeenCalled();
|
2019-01-03 16:00:55 +03:00
|
|
|
});
|
|
|
|
});
|