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

34 lines
725 B
JavaScript
Raw Normal View History

2019-01-12 11:33:27 +08:00
import { mount } from '@vue/test-utils';
import { Col, Row } from '..';
2018-05-19 17:50:22 +08:00
describe('Grid', () => {
it('should render Col', () => {
const wrapper = mount(Col, {
propsData: {
span: 2,
},
2019-01-12 11:33:27 +08:00
});
expect(wrapper.html()).toMatchSnapshot();
});
2018-05-19 17:50:22 +08:00
it('should render Row', () => {
2019-01-12 11:33:27 +08:00
const wrapper = mount(Row);
expect(wrapper.html()).toMatchSnapshot();
});
2018-12-09 10:58:50 +08:00
it('renders wrapped Col correctly', () => {
const wrapper = mount({
2019-01-12 11:33:27 +08:00
render() {
return (
<Row gutter={20}>
<div>
<Col span="12" />
</div>
<Col span="12" />
</Row>
);
2018-12-09 10:58:50 +08:00
},
2019-01-12 11:33:27 +08:00
});
expect(wrapper.html()).toMatchSnapshot();
});
});