redux-devtools/packages/redux-devtools-ui/tests/Dialog.test.tsx

87 lines
1.7 KiB
TypeScript
Raw Normal View History

2019-01-03 16:00:55 +03:00
import React from 'react';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
2019-01-03 16:00:55 +03:00
import { Dialog } from '../src';
describe('Dialog', function () {
2019-01-03 16:00:55 +03:00
it('renders correctly', () => {
const { container } = render(
<Dialog
onDismiss={() => {
// noop
}}
onSubmit={() => {
// noop
}}
/>
);
expect(container.firstChild).toMatchSnapshot();
2019-01-03 16:00:55 +03:00
});
it('renders with props', () => {
const { container } = render(
<Dialog
title="Dialog Title"
open
fullWidth
onDismiss={() => {
// noop
}}
onSubmit={() => {
// noop
}}
>
2019-01-03 16:00:55 +03:00
Hello Dialog!
</Dialog>
);
expect(container.firstChild).toMatchSnapshot();
2019-01-03 16:00:55 +03:00
});
it('renders modal', () => {
const { container } = render(
<Dialog
modal
onDismiss={() => {
// noop
}}
onSubmit={() => {
// noop
}}
/>
);
expect(container.firstChild).toMatchSnapshot();
2019-01-03 16:00:55 +03:00
});
it('should handle dismiss event', () => {
const onDismiss = jest.fn();
render(
<Dialog
open
onDismiss={onDismiss}
onSubmit={() => {
// noop
}}
/>
);
2019-01-03 16:00:55 +03:00
userEvent.click(screen.getByRole('button', { name: 'Cancel' }));
expect(onDismiss).toHaveBeenCalled();
2019-01-03 16:00:55 +03:00
});
it('should handle submit event', () => {
const onSubmit = jest.fn();
render(
<Dialog
open
onDismiss={() => {
// noop
}}
onSubmit={onSubmit}
/>
);
2019-01-03 16:00:55 +03:00
userEvent.click(screen.getByRole('button', { name: 'Submit' }));
expect(onSubmit).toHaveBeenCalled();
2019-01-03 16:00:55 +03:00
});
});