2019-01-03 16:00:55 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { render, mount } from 'enzyme';
|
|
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
|
|
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', () => {
|
|
|
|
const wrapper = render(
|
2019-01-10 21:51:14 +03:00
|
|
|
<ContextMenu items={items} onClick={() => {}} x={100} y={100} />
|
2019-01-03 16:00:55 +03:00
|
|
|
);
|
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
it('should handle the click event', () => {
|
|
|
|
const onClick = jest.fn();
|
|
|
|
const wrapper = mount(
|
2019-01-10 21:51:14 +03:00
|
|
|
<ContextMenu items={items} onClick={onClick} x={100} y={100} />
|
|
|
|
);
|
2019-01-03 16:00:55 +03:00
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
wrapper.find('button').first().simulate('click');
|
2019-01-03 16:00:55 +03:00
|
|
|
expect(onClick).toBeCalled();
|
|
|
|
});
|
|
|
|
});
|