restoreMocks
- Type:
boolean - Default:
false
Should Vitest automatically call vi.restoreAllMocks() before each test.
This restores all original implementations on spies created manually with vi.spyOn.
js
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
restoreMocks: true,
},
})WARNING
Be aware that this option may cause problems with async concurrent tests. If enabled, the completion of one test will restore the implementation for all spies, including those currently being used by other tests in progress.