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

18 lines
383 B
JavaScript
Raw Normal View History

2018-05-19 09:50:22 +00:00
import { mount } from '@vue/test-utils'
import { Col, Row } from '..'
describe('Grid', () => {
it('should render Col', () => {
const wrapper = mount(Col, {
propsData: {
span: 2,
},
})
expect(wrapper.html()).toMatchSnapshot()
})
it('should render Row', () => {
const wrapper = mount(Row)
expect(wrapper.html()).toMatchSnapshot()
})
})