import React from 'react';
import { render, mount } from 'enzyme';
import { Col, Row } from '..';
import mountTest from '../../../tests/shared/mountTest';
describe('Grid', () => {
mountTest(Row);
mountTest(Col);
it('should render Col', () => {
const wrapper = render(
);
expect(wrapper).toMatchSnapshot();
});
it('should render Row', () => {
const wrapper = render(
);
expect(wrapper).toMatchSnapshot();
});
it('when typeof gutter is object', () => {
const wrapper = mount(
);
expect(wrapper.instance().getGutter()).toEqual([8, 0]);
});
it('when typeof gutter is object array', () => {
const wrapper = mount(
,
);
expect(wrapper.instance().getGutter()).toEqual([8, 8]);
});
it('when typeof gutter is object array in large screen', () => {
const wrapper = mount(
,
);
wrapper.setState({
screens: { md: true, lg: true, xl: true },
});
expect(wrapper.instance().getGutter()).toEqual([40, 400]);
});
it('renders wrapped Col correctly', () => {
const MyCol = () => ;
const wrapper = render(
,
);
expect(wrapper).toMatchSnapshot();
});
it('when component has been unmounted, componentWillUnmount should be called', () => {
const wrapper = mount(
);
const willUnmount = jest.spyOn(wrapper.instance(), 'componentWillUnmount');
wrapper.unmount();
expect(willUnmount).toHaveBeenCalled();
});
it('should work correct when gutter is object', () => {
const wrapper = mount(
);
expect(wrapper.find('div').prop('style')).toEqual({
marginLeft: -10,
marginRight: -10,
});
});
it('should work currect when gutter is array', () => {
const wrapper = mount(
);
expect(wrapper.find('div').prop('style')).toEqual({
marginLeft: -8,
marginRight: -8,
marginTop: -10,
marginBottom: 10,
});
});
});