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