2.6.10
https://github.com/Akryum/vue-issue-test-transition-functional
Using a <transition> on a stubbed functional component is throwing an error during the unit tests with Jest (using shallowMount).
In the reprod, run:
yarn install
yarn run test:unit
No error in the console
The tests pass but an error is displayed in the console:
[Vue warn]: Error in nextTick: "TypeError: Cannot read property '_isDestroyed' of undefined"
Not sure if this should be fixed in Vue core or Vue test utils.
In Vue core, a quick fix would be to check if componentInstance is defined on the vnode here.
Note: workaround is manually stubbing the functional component in the test. This makes the error disappear.
@eddyerburgh maybe you know where this comes from 馃檪
Getting this error in the production environment
Difficult to debug as in happens only on Static version of the site.

We see this in static site generated by Nuxt.js. This only happens on page refresh.
Happening on my side with Jest test when I use provide/inject and render function instead of template :(
Most helpful comment
We see this in static site generated by Nuxt.js. This only happens on page refresh.