v5.0.3
5.0.3 (2020-05-20)
- updates Vue Test Utils to v1 (out of beta!) (7a7c0fd)
- updates types (7a7c0fd)
@vue/[email protected]
now stubs transitions by default. After updating, some tests might fail because of this. The easiest solution is to disable stubbing for transitions for those tests:
test('should mount', () => {
const { ... } = render(ComponentWithTransitions, {
stubs: {
transition: false;
}
})
})