diff --git a/packages/subagent/subagent-acp/tests/subagent-acp.spec.ts b/packages/subagent/subagent-acp/tests/subagent-acp.spec.ts index 28007f4a6e..89fa942ca1 100644 --- a/packages/subagent/subagent-acp/tests/subagent-acp.spec.ts +++ b/packages/subagent/subagent-acp/tests/subagent-acp.spec.ts @@ -589,10 +589,9 @@ describe('dsh-subagent-acp', () => { ) }) - it.skipIf( - process.platform === 'win32', - 'Windows anonymous pipes do not surface a child stdout half-close while the child stays alive', - )('reports initialize-stage transport when the child closes the protocol but stays alive', async () => { + // Windows anonymous pipes do not surface a child stdout half-close while + // the child stays alive. + it.skipIf(process.platform === 'win32')('reports initialize-stage transport when the child closes the protocol but stays alive', async () => { const error = await startAcpRun(request(), { command: process.execPath, args: [mockServer], @@ -939,10 +938,9 @@ describe('dsh-subagent-acp', () => { await run.dispose() }) - it.skipIf( - process.platform === 'win32', - 'Windows anonymous pipes do not surface a child stdout half-close while the child stays alive', - )('classifies a prompt transport failure without copying SDK text', async () => { + // Windows anonymous pipes do not surface a child stdout half-close while + // the child stays alive. + it.skipIf(process.platform === 'win32')('classifies a prompt transport failure without copying SDK text', async () => { const run = await startAcpRun(request('private prompt text'), { command: process.execPath, args: [mockServer], @@ -963,10 +961,9 @@ describe('dsh-subagent-acp', () => { await run.dispose() }) - it.skipIf( - process.platform === 'win32', - 'Windows anonymous pipes do not surface a child stdout half-close while the child stays alive', - )('lets local cancellation interrupt prompt-failure process observation', async () => { + // Windows anonymous pipes do not surface a child stdout half-close while + // the child stays alive. + it.skipIf(process.platform === 'win32')('lets local cancellation interrupt prompt-failure process observation', async () => { const controller = new AbortController() const protocolEnded = Promise.withResolvers() let boundedExitWaits = 0