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';
|
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
});
|