mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
27 lines
747 B
JavaScript
27 lines
747 B
JavaScript
import React from 'react';
|
|
import { render, mount } from 'enzyme';
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
import { ContextMenu } from '../src';
|
|
import { items } from '../src/ContextMenu/stories/data';
|
|
|
|
describe('ContextMenu', function() {
|
|
it('renders correctly', () => {
|
|
const wrapper = render(
|
|
<ContextMenu items={items} onClick={() => {}} 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();
|
|
});
|
|
});
|