[Vuejs]-Best way to find a non-stubbed transition wrapper with vue-test-utils v1

0๐Ÿ‘

I just discovered a solution. In v1 when transitions are not automatically stubbed, you can find by the transition-stub element. In beta you can pass false to not stub the transition: stubs: { transition: false } and then find by transition-stub.

Leave a comment