Skip to content
Advertisement

How to clear/reset mocks in Vitest

I have a simple composable useRoles which I need to test

JavaScript

My approach of testing it is the following

JavaScript

And useStore is just a simple function that I intended to mock

JavaScript

The first test runs successfully, it has all the mock values I implemented but the problem is that it’s not resetting for each test (not resetting at all). The second test has the old values from the previous mock.

I have used

JavaScript

but for some reason clear or reset is not happening.

How can I clear vi.mock value for each test?

Solution

As it turned out I should not be called vi.mock multiple times. That was the main mistake

Substitutes all imported modules from provided path with another module. You can use configured Vite aliases inside a path. The call to vi.mock is hoisted, so it doesn’t matter where you call it. It will always be executed before all imports.

Vitest statically analyzes your files to hoist vi.mock. It means that you cannot use vi that was not imported directly from vitest package (for example, from some utility file)

Docs

My fixed solution is below.

JavaScript

vitest = v0.23.0

Advertisement

Answer

I ran into the same issue and was able to find a workaround. In your case it should look like this:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement