redux-devtools/packages/devui/tests/ContextMenu.test.tsx

31 lines
784 B
TypeScript
Raw Normal View History

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';
import { items } from '../src/ContextMenu/data';
2019-01-03 16:00:55 +03:00
describe('ContextMenu', function () {
2019-01-03 16:00:55 +03:00
it('renders correctly', () => {
const wrapper = render(
<ContextMenu
items={items}
onClick={() => {
// noop
}}
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
wrapper.find('button').first().simulate('click');
2019-01-03 16:00:55 +03:00
expect(onClick).toBeCalled();
});
});