You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
414 B
20 lines
414 B
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()
|
|
})
|
|
})
|