mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
727d753081
* stash * and those * stash * stash * stash * stash * tests * fix errors * revert * stash * fix lint * prettier
31 lines
784 B
TypeScript
31 lines
784 B
TypeScript
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';
|
|
|
|
describe('ContextMenu', function () {
|
|
it('renders correctly', () => {
|
|
const wrapper = render(
|
|
<ContextMenu
|
|
items={items}
|
|
onClick={() => {
|
|
// noop
|
|
}}
|
|
x={100}
|
|
y={100}
|
|
/>
|
|
);
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
});
|
|
it('should handle the click event', () => {
|
|
const onClick = jest.fn();
|
|
const wrapper = mount(
|
|
<ContextMenu items={items} onClick={onClick} x={100} y={100} />
|
|
);
|
|
|
|
wrapper.find('button').first().simulate('click');
|
|
expect(onClick).toBeCalled();
|
|
});
|
|
});
|