redux-devtools/packages/devui/tests/ContextMenu.test.js
Nathan Bierema cd4f022671
chore(devui): upgrade storybook (#626)
* stash

* stash

* stash

* fix

* stash

* fix css

* stash

* stash

* stash

* Fix tests
2020-09-02 13:30:47 -04:00

24 lines
719 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/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();
});
});