(modulePath: string)
| 11 | * the first load, but the module's normal specifier resolution must stay intact. |
| 12 | */ |
| 13 | export function requireTestModule<T>(modulePath: string): T { |
| 14 | return requireForTest(modulePath) as T; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Helper type for recursive partial mocks. |
no outgoing calls