()
| 360 | |
| 361 | it(`should return true for functions with a then method`, () => { |
| 362 | const thenableFunction: any = function () {} |
| 363 | thenableFunction.then = (onFulfilled?: any) => { |
| 364 | onFulfilled?.(42) |
| 365 | } |
nothing calls this directly
no outgoing calls
no test coverage detected