()
| 66 | let timeoutId: ReturnType<typeof setTimeout> | undefined; |
| 67 | |
| 68 | const onAbort = () => { |
| 69 | clearTimeout(timeoutId); |
| 70 | resolve(); |
| 71 | }; |
| 72 | |
| 73 | timeoutId = setTimeout(() => { |
| 74 | abortSignal.removeEventListener('abort', onAbort); |
nothing calls this directly
no test coverage detected