mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
727d753081
* stash * and those * stash * stash * stash * stash * tests * fix errors * revert * stash * fix lint * prettier
87 lines
1.7 KiB
TypeScript
87 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { render, mount } from 'enzyme';
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
import { Dialog } from '../src';
|
|
|
|
describe('Dialog', function () {
|
|
it('renders correctly', () => {
|
|
const wrapper = render(
|
|
<Dialog
|
|
onDismiss={() => {
|
|
// noop
|
|
}}
|
|
onSubmit={() => {
|
|
// noop
|
|
}}
|
|
/>
|
|
);
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders with props', () => {
|
|
const wrapper = render(
|
|
<Dialog
|
|
title="Dialog Title"
|
|
open
|
|
fullWidth
|
|
onDismiss={() => {
|
|
// noop
|
|
}}
|
|
onSubmit={() => {
|
|
// noop
|
|
}}
|
|
>
|
|
Hello Dialog!
|
|
</Dialog>
|
|
);
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders modal', () => {
|
|
const wrapper = render(
|
|
<Dialog
|
|
modal
|
|
onDismiss={() => {
|
|
// noop
|
|
}}
|
|
onSubmit={() => {
|
|
// noop
|
|
}}
|
|
/>
|
|
);
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('should handle dismiss event', () => {
|
|
const onDismiss = jest.fn();
|
|
const wrapper = mount(
|
|
<Dialog
|
|
open
|
|
onDismiss={onDismiss}
|
|
onSubmit={() => {
|
|
// noop
|
|
}}
|
|
/>
|
|
);
|
|
|
|
wrapper.find('button').first().simulate('click');
|
|
expect(onDismiss).toBeCalled();
|
|
});
|
|
|
|
it('should handle submit event', () => {
|
|
const onSubmit = jest.fn();
|
|
const wrapper = mount(
|
|
<Dialog
|
|
open
|
|
onDismiss={() => {
|
|
// noop
|
|
}}
|
|
onSubmit={onSubmit}
|
|
/>
|
|
);
|
|
|
|
wrapper.find('button').last().simulate('click');
|
|
expect(onSubmit).toBeCalled();
|
|
});
|
|
});
|