import React from 'react';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { Notification } from '../src';
describe('Notification', function () {
  it('renders correctly', () => {
    const { container } = render(Message);
    expect(container.firstChild).toMatchSnapshot();
  });
  it('renders with props', () => {
    const { container } = render(
       {
          // noop
        }}
      >
        Message
      
    );
    expect(container.firstChild).toMatchSnapshot();
  });
  it('should handle the click event', () => {
    const onClose = jest.fn();
    render(Message);
    userEvent.click(screen.getByRole('button'));
    expect(onClose).toHaveBeenCalled();
  });
});