(mockedValue: T)
| 338 | } |
| 339 | |
| 340 | export function resolvableInstance<T>(mockedValue: T): T { |
| 341 | const instanceValue = instance<T>(mockedValue); |
| 342 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 343 | (instanceValue as any).then = undefined; |
| 344 | return instanceValue; |
| 345 | } |
no outgoing calls