* Given the name of a module, use the automatic mocking system to generate a * mocked version of the module for you. * * This is useful when you want to create a manual mock that extends the * automatic mock's behavior.
(moduleName: string)
| 124 | * automatic mock's behavior. |
| 125 | */ |
| 126 | createMockFromModule<T = unknown>(moduleName: string): Mocked<T>; |
| 127 | /** |
| 128 | * Indicates that the module system should never return a mocked version of |
| 129 | * the specified module and its dependencies. |
no outgoing calls
no test coverage detected