import React from 'react';
import { mount } from 'enzyme';
import Modal from '..';
jest.mock('rc-util/lib/Portal');
class ModalTester extends React.Component {
constructor(props) {
super(props);
this.state = { visible: false };
}
componentDidMount() {
this.setState({ visible: true }); // eslint-disable-line react/no-did-mount-set-state
}
saveContainer = container => {
this.container = container;
};
getContainer = () => this.container;
render() {
const { visible } = this.state;
return (
);
}
}
describe('Modal', () => {
it('render correctly', () => {
const wrapper = mount();
expect(wrapper.render()).toMatchSnapshot();
});
it('render without footer', () => {
const wrapper = mount();
expect(wrapper.render()).toMatchSnapshot();
});
it('onCancel should be called', () => {
const onCancel = jest.fn();
const wrapper = mount().instance();
wrapper.handleCancel();
expect(onCancel).toHaveBeenCalled();
});
it('onOk should be called', () => {
const onOk = jest.fn();
const wrapper = mount().instance();
wrapper.handleOk();
expect(onOk).toHaveBeenCalled();
});
it('support closeIcon', () => {
const wrapper = mount(closeIcon} visible />);
expect(wrapper.render()).toMatchSnapshot();
});
});