I'm running into an issue where I can't mock the method called in my `mounted()` hook and I'm assuming it has to do with the load order. ```js const myMethod = sinon.stub(); wrapper.setMethods({ myMethod }); ``` I've also tried ```js const myMethod = sinon.spy(); wrapper = mount(ProfileSidebarIndex, { methods: { myMethod }, }); ``` and mocking `mounted` itself ```js const mounted = sinon.stub(); wrapper = mount(ProfileSidebarIndex, { mounted }); ``` Is there a way to do this?