mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 18:07:27 +03:00 
			
		
		
		
	* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			915 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			915 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
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(<Notification>Message</Notification>);
 | 
						|
    expect(container.firstChild).toMatchSnapshot();
 | 
						|
  });
 | 
						|
 | 
						|
  it('renders with props', () => {
 | 
						|
    const { container } = render(
 | 
						|
      <Notification
 | 
						|
        type="error"
 | 
						|
        onClose={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
      >
 | 
						|
        Message
 | 
						|
      </Notification>,
 | 
						|
    );
 | 
						|
    expect(container.firstChild).toMatchSnapshot();
 | 
						|
  });
 | 
						|
 | 
						|
  it('should handle the click event', async () => {
 | 
						|
    const onClose = jest.fn();
 | 
						|
    render(<Notification onClose={onClose}>Message</Notification>);
 | 
						|
 | 
						|
    await userEvent.click(screen.getByRole('button'));
 | 
						|
    expect(onClose).toHaveBeenCalled();
 | 
						|
  });
 | 
						|
});
 |