* Returns a mock module instead of the actual module, bypassing all checks * on whether the module should be required normally or not.
(moduleName: string)
| 277 | * on whether the module should be required normally or not. |
| 278 | */ |
| 279 | requireMock<T = unknown>(moduleName: string): T; |
| 280 | /** |
| 281 | * Resets the state of all mocks. Equivalent to calling `.mockReset()` on |
| 282 | * every mocked function. |
no outgoing calls
no test coverage detected