···2121 },
2222})
2323```
2424+2525+::: warning
2626+Be aware that this option may cause problems with async [concurrent tests](/api/test#test-concurrent). If enabled, the completion of one test will clear the mock history for all mocks, including those currently being used by other tests in progress.
2727+:::
+4
docs/config/mockreset.md
···2121 },
2222})
2323```
2424+2525+::: warning
2626+Be aware that this option may cause problems with async [concurrent tests](/api/test#test-concurrent). If enabled, the completion of one test will clear the mock history and implementation for all mocks, including those currently being used by other tests in progress.
2727+:::
+4
docs/config/restoremocks.md
···2121 },
2222})
2323```
2424+2525+::: warning
2626+Be aware that this option may cause problems with async [concurrent tests](/api/test#test-concurrent). If enabled, the completion of one test will restore the implementation for all spies, including those currently being used by other tests in progress.
2727+:::
+4
docs/config/unstubenvs.md
···1919 },
2020})
2121```
2222+2323+::: warning
2424+Be aware that this option may cause problems with async [concurrent tests](/api/test#test-concurrent). If enabled, the completion of one test will restore all the values changed with [`vi.stubEnv`](/api/vi#vi-stubenv), including those currently being used by other tests in progress.
2525+:::
+4
docs/config/unstubglobals.md
···1919 },
2020})
2121```
2222+2323+::: warning
2424+Be aware that this option may cause problems with async [concurrent tests](/api/test#test-concurrent). If enabled, the completion of one test will restore all global values that were changed with [`vi.stubGlobal`](/api/vi#vi-stubglobal), including those currently being used by other tests in progress.
2525+:::