mobx-vue icon indicating copy to clipboard operation
mobx-vue copied to clipboard

What's the counterpart of `Vue.nextTick` for mobx-vue?

Open Louis-Tian opened this issue 5 years ago • 0 comments

When unit testing Vue components, it is often necessary to call await vm.$nextTick() to ensure the rerender is completed before accessing the component's DOM for assertion.

As far as I understand, mobx-vue triggers the rerender directly, and has nothing to do with Vue's Async Update Queue. Therefore vm.$nextTick would not work for mobx-vue.

So the question is how would one do the same thing as nextTick with mobx-vue?

Louis-Tian avatar Jul 03 '20 12:07 Louis-Tian