You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Heya! 👋
While I was waiting for the 3.6.x release, I rolled some in-house vue-router hooks as per #3760 (comment). This allowed refactoring some options-API components to composition-api "mode" while keeping my test suite intact.
I thought the refactor to use the official package hooks would be a simple find/replace but my test suite broke. After some digging, the reason is that the hooks implementation relies on router.currentRoute property and afterEach hook, which made the tests using the simplest $route mock as suggested in vue-test-utils docs to fail.
Of course there's several ways to fix it: updating the test mocks as below; setting up a router with localVue as per docs; stubbing modules jest.mock(); etc;
import { mount } from '@vue/test-utils';
import SomeComponent from './SomeComponent.vue';
const $route = {
path: '/some/path',
};
function Wrapper() {
return mount(SomeComponent, {
mocks: {
- $route,+ $router: { currentRoute: $route, afterEach: vitest.fn() },
},
});
}
Question
If you went this way1, I'm sure there are good reasons for it. I'm just curious on why didn't you go with a similar approach as vue-router@4, as in, with a reactive object derived from getCurrentInstance().proxy.$route as per2 which kept tests working without any change — but surely break some other stuff.
Cheers and thanks for your work on the router! Feel free to close this if you think it's related with @vue/test-utils docs instead ✌️
Any mock to the router does indeed need a bit more if they use the composables. I think some cookbook entry would be a nice thing if anybody is up for the PR
I had to go with that version because [2] didn't work in all scenarios 😔
Version
3.6.5
Reproduction link
stackblitz.com
Steps to reproduce
What is expected?
using options/composition-api should not affect the test suite output
What is actually happening?
Using options/composition-api requires different ways to test (mock)
Additional Comments
Heya! 👋
While I was waiting for the
3.6.x
release, I rolled some in-house vue-router hooks as per #3760 (comment). This allowed refactoring some options-API components to composition-api "mode" while keeping my test suite intact.I thought the refactor to use the official package hooks would be a simple find/replace but my test suite broke. After some digging, the reason is that the hooks implementation relies on
router.currentRoute
property andafterEach
hook, which made the tests using the simplest $route mock as suggested in vue-test-utils docs to fail.Of course there's several ways to fix it: updating the test mocks as below; setting up a router with localVue as per docs; stubbing modules
jest.mock()
; etc;Question
If you went this way1, I'm sure there are good reasons for it. I'm just curious on why didn't you go with a similar approach as vue-router@4, as in, with a reactive object derived from
getCurrentInstance().proxy.$route
as per2 which kept tests working without any change — but surely break some other stuff.Cheers and thanks for your work on the router! Feel free to close this if you think it's related with
@vue/test-utils
docs instead ✌️Footnotes
https://github.com/vuejs/vue-router/blob/e3273b3db905f0d162d57725fba0c459ea5bb463/src/composables/globals.js#L23-L30 ↩
https://github.com/vuejs/vue-router/pull/3763/commits/f1eb2b1dba9b5cc5011b230a3121c882d883c4c0#diff-2042e0452c0d0edd730403740acc8d4337382101087ad62a677e1e2fdae05e8fR8-R17 ↩
The text was updated successfully, but these errors were encountered: