Skip to content

v5.0.3

Compare
Choose a tag to compare
@afontcu afontcu released this 20 May 16:32
7a7c0fd

5.0.3 (2020-05-20)

@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;
    }
  })
})