You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Modal from '..';
|
|
|
|
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 = () => {
|
|
return this.container;
|
|
}
|
|
render() {
|
|
return (
|
|
<div>
|
|
<div ref={this.saveContainer} />
|
|
<Modal
|
|
{...this.props}
|
|
visible={this.state.visible}
|
|
getContainer={this.getContainer}
|
|
>
|
|
Here is content of Modal
|
|
</Modal>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
describe('Modal', () => {
|
|
it('render correctly', () => {
|
|
const wrapper = mount(<ModalTester />);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
|
|
it('render without footer', () => {
|
|
const wrapper = mount(<ModalTester footer={null} />);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
});
|
|
|