import React from 'react';
import { render, mount } from 'enzyme';
import { renderToJson } from 'enzyme-to-json';
import { Notification } from '../src';
describe('Notification', function() {
  it('renders correctly', () => {
    const wrapper = render(Message);
    expect(renderToJson(wrapper)).toMatchSnapshot();
  });
  it('renders with props', () => {
    const wrapper = render(
       {}}>
        Message
      
    );
    expect(renderToJson(wrapper)).toMatchSnapshot();
  });
  it('should handle the click event', () => {
    const onClose = jest.fn();
    const wrapper = mount(
      Message
    );
    wrapper.find('button').simulate('click');
    expect(onClose).toBeCalled();
  });
});