What's the counterpart of `Vue.nextTick` for mobx-vue?
Louis-Tian opened this issue · 0 comments
Louis-Tian commented
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
?