redux-devtools/packages/devui/tests/Notification.test.js

31 lines
837 B
JavaScript
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 { Notification } from '../src';
describe('Notification', function () {
2019-01-03 16:00:55 +03:00
it('renders correctly', () => {
const wrapper = render(<Notification>Message</Notification>);
expect(renderToJson(wrapper)).toMatchSnapshot();
});
it('renders with props', () => {
const wrapper = render(
2019-01-10 21:51:14 +03:00
<Notification type="error" onClose={() => {}}>
Message
</Notification>
2019-01-03 16:00:55 +03:00
);
expect(renderToJson(wrapper)).toMatchSnapshot();
});
it('should handle the click event', () => {
const onClose = jest.fn();
2019-01-10 21:51:14 +03:00
const wrapper = mount(
<Notification onClose={onClose}>Message</Notification>
);
2019-01-03 16:00:55 +03:00
wrapper.find('button').simulate('click');
expect(onClose).toBeCalled();
});
});