We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I would like to change a mock in my wrapper without having to recreate a whole new wrapper, is this possible? Here's my wrapper:
let wrapper; let store; let state; let getters; let $route = { meta: { app: 'testMeta1' } }; const $router = { go: vi.fn() }; state = { }; getters = { } }; const actions = { }; store = createStore({ getters, actions, state, mutations: { } } }); wrapper = shallowMount(ImageViewer, { global: { plugins: [store], mocks: { $route, $router } } });
So what I would like to do is change the $route.meta.app for a specific test, to the below without having to create a whole new wrapper.
let $route = { meta: { app: 'testMeta2' } };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I would like to change a mock in my wrapper without having to recreate a whole new wrapper, is this possible?
Here's my wrapper:
So what I would like to do is change the $route.meta.app for a specific test, to the below without having to create a whole new wrapper.
The text was updated successfully, but these errors were encountered: