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

19 lines
386 B
JavaScript
Raw Normal View History

2016-12-14 14:48:09 +08:00
import React from 'react';
2017-09-15 10:56:00 +08:00
import { render } from 'enzyme';
2016-12-14 14:48:09 +08:00
import { Col, Row } from '..';
describe('Grid', () => {
it('should render Col', () => {
2017-09-15 10:56:00 +08:00
const wrapper = render(
2016-12-14 14:48:09 +08:00
<Col span="2" />
);
2017-09-15 10:56:00 +08:00
expect(wrapper).toMatchSnapshot();
2016-12-14 14:48:09 +08:00
});
it('should render Row', () => {
2017-09-15 10:56:00 +08:00
const wrapper = render(
2016-12-14 14:48:09 +08:00
<Row />
);
2017-09-15 10:56:00 +08:00
expect(wrapper).toMatchSnapshot();
2016-12-14 14:48:09 +08:00
});
});