vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
24 lines
627 B
24 lines
627 B
import { mount } from '@vue/test-utils'; |
|
export default function mountTest(Component) { |
|
describe(`mount and unmount`, () => { |
|
// https://github.com/ant-design/ant-design/pull/18441 |
|
it(`component could be updated and unmounted without errors`, () => { |
|
const wrapper = mount( |
|
{ |
|
render() { |
|
return ( |
|
<div> |
|
<Component /> |
|
</div> |
|
); |
|
}, |
|
}, |
|
{ sync: false, attachTo: 'body' }, |
|
); |
|
expect(() => { |
|
wrapper.vm.$forceUpdate(); |
|
wrapper.unmount(); |
|
}).not.toThrow(); |
|
}); |
|
}); |
|
}
|
|
|