()
| 705 | ): { readonly didAbort: boolean; dispose: () => void } { |
| 706 | let didAbort = false; |
| 707 | const onAbort = () => { |
| 708 | didAbort = true; |
| 709 | killProcessTree(child, options.detached); |
| 710 | }; |
| 711 | if (options.signal?.aborted) { |
| 712 | onAbort(); |
| 713 | } else { |
no test coverage detected
searching dependent graphs…