* Returns the actual module instead of a mock, bypassing all checks on * whether the module should receive a mock implementation or not. * * @example * ```js * jest.mock('../myModule', () => { * // Require the original module to not be mocked... * const originalModule = jest
(moduleName: string)
| 272 | * ``` |
| 273 | */ |
| 274 | requireActual<T = unknown>(moduleName: string): T; |
| 275 | /** |
| 276 | * Returns a mock module instead of the actual module, bypassing all checks |
| 277 | * on whether the module should be required normally or not. |
no outgoing calls
no test coverage detected