ant-design/components/grid/__tests__/index.test.js

66 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-12-14 14:48:09 +08:00
import React from 'react';
2019-03-01 15:59:32 +08:00
import { render, mount } from 'enzyme';
2016-12-14 14:48:09 +08:00
import { Col, Row } from '..';
2019-03-01 15:59:32 +08:00
jest.mock('enquire.js', () => {
let that;
let unmatchFun;
return {
unregister: jest.fn(),
register: (meidia, options) => {
if (meidia === '(max-width: 575px)') {
that = this;
options.match.call(that);
unmatchFun = options.unmatch;
}
},
callunmatch() {
unmatchFun.call(that);
},
};
});
2016-12-14 14:48:09 +08:00
describe('Grid', () => {
it('should render Col', () => {
const wrapper = render(<Col span={2} />);
2017-09-15 10:56:00 +08:00
expect(wrapper).toMatchSnapshot();
2016-12-14 14:48:09 +08:00
});
2016-12-14 14:48:09 +08:00
it('should render Row', () => {
2018-12-07 16:17:45 +08:00
const wrapper = render(<Row />);
2017-09-15 10:56:00 +08:00
expect(wrapper).toMatchSnapshot();
2016-12-14 14:48:09 +08:00
});
2019-03-01 15:59:32 +08:00
it('should work correct when gutter is object', () => {
// eslint-disable-next-line global-require
const enquire = require('enquire.js');
const wrapper = mount(<Row gutter={{ xs: 20 }} />);
expect(wrapper.find('div').prop('style')).toEqual({
marginLeft: -10,
marginRight: -10,
});
enquire.callunmatch();
expect(
wrapper
.update()
.find('div')
.prop('style'),
).toEqual(undefined);
wrapper.unmount();
expect(enquire.unregister).toBeCalledTimes(6);
});
it('renders wrapped Col correctly', () => {
const MyCol = () => <Col span={12} />;
const wrapper = render(
<Row gutter={20}>
<div>
<Col span={12} />
</div>
<MyCol />
2018-12-07 16:17:45 +08:00
</Row>,
);
expect(wrapper).toMatchSnapshot();
});
2016-12-14 14:48:09 +08:00
});