1.0.0-beta.20
https://codesandbox.io/s/wqo716rm55
Run the test written on sandbox
It should work as works on the browser so this.$parent should return the parent of the component and not itself.
I have a scenario similar to what I reproduce in the sandbox. I have a few components that are inserted on the default slot of a "wrapper" component, each of these components are registered on the parent when are mounted using a method on the parent this.$parent.register.
All work on the browser but when I tried to test the this.$parent of the child component refers to itself and the test fails because it doesn't find the register method.
For example If I change this.$parent by this.$parent.$parent all works.
This is a nice issue.
@eddyerburgh @38elements thanks, good work!!