(worker: JestWorker)
| 15 | const RESTARTED = Symbol('restarted') |
| 16 | |
| 17 | const cleanupWorkers = (worker: JestWorker) => { |
| 18 | for (const curWorker of ((worker as any)._workerPool?._workers || []) as { |
| 19 | _child?: ChildProcess |
| 20 | }[]) { |
| 21 | curWorker._child?.kill('SIGINT') |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | export function getNextBuildDebuggerPortOffset(_: { |
| 26 | kind: 'export-page' |