mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
20 lines
414 B
JavaScript
20 lines
414 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import Search from '../search'
|
|
|
|
describe('Search', () => {
|
|
it('should show cross icon when input value exists', () => {
|
|
const props = {
|
|
propsData: {
|
|
value: '',
|
|
},
|
|
}
|
|
const wrapper = mount(Search, props)
|
|
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
|
|
wrapper.setProps({ value: 'a' })
|
|
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
})
|
|
})
|