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>
		
			
				
	
	
		
			87 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import React from 'react';
 | 
						|
import { render, screen } from '@testing-library/react';
 | 
						|
import userEvent from '@testing-library/user-event';
 | 
						|
import { Dialog } from '../src';
 | 
						|
 | 
						|
describe('Dialog', function () {
 | 
						|
  it('renders correctly', () => {
 | 
						|
    const { container } = render(
 | 
						|
      <Dialog
 | 
						|
        onDismiss={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
        onSubmit={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
      />,
 | 
						|
    );
 | 
						|
    expect(container.firstChild).toMatchSnapshot();
 | 
						|
  });
 | 
						|
 | 
						|
  it('renders with props', () => {
 | 
						|
    const { container } = render(
 | 
						|
      <Dialog
 | 
						|
        title="Dialog Title"
 | 
						|
        open
 | 
						|
        fullWidth
 | 
						|
        onDismiss={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
        onSubmit={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
      >
 | 
						|
        Hello Dialog!
 | 
						|
      </Dialog>,
 | 
						|
    );
 | 
						|
    expect(container.firstChild).toMatchSnapshot();
 | 
						|
  });
 | 
						|
 | 
						|
  it('renders modal', () => {
 | 
						|
    const { container } = render(
 | 
						|
      <Dialog
 | 
						|
        modal
 | 
						|
        onDismiss={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
        onSubmit={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
      />,
 | 
						|
    );
 | 
						|
    expect(container.firstChild).toMatchSnapshot();
 | 
						|
  });
 | 
						|
 | 
						|
  it('should handle dismiss event', async () => {
 | 
						|
    const onDismiss = jest.fn();
 | 
						|
    render(
 | 
						|
      <Dialog
 | 
						|
        open
 | 
						|
        onDismiss={onDismiss}
 | 
						|
        onSubmit={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
      />,
 | 
						|
    );
 | 
						|
 | 
						|
    await userEvent.click(screen.getByRole('button', { name: 'Cancel' }));
 | 
						|
    expect(onDismiss).toHaveBeenCalled();
 | 
						|
  });
 | 
						|
 | 
						|
  it('should handle submit event', async () => {
 | 
						|
    const onSubmit = jest.fn();
 | 
						|
    render(
 | 
						|
      <Dialog
 | 
						|
        open
 | 
						|
        onDismiss={() => {
 | 
						|
          // noop
 | 
						|
        }}
 | 
						|
        onSubmit={onSubmit}
 | 
						|
      />,
 | 
						|
    );
 | 
						|
 | 
						|
    await userEvent.click(screen.getByRole('button', { name: 'Submit' }));
 | 
						|
    expect(onSubmit).toHaveBeenCalled();
 | 
						|
  });
 | 
						|
});
 |