diff --git a/packages/agent-core/test/tools/bash-windows-kill.test.ts b/packages/agent-core/test/tools/bash-windows-kill.test.ts deleted file mode 100644 index 1ff98eb4d6..0000000000 --- a/packages/agent-core/test/tools/bash-windows-kill.test.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Windows-only: default Node `kill` does not stop the whole process tree, so - * background Bash can leave orphaned child processes. Once tree kill lands - * (e.g. `taskkill /T`), assert grandchildren are reaped within the grace window. - */ -import { describe, it } from 'vitest'; - -describe.skipIf(process.platform !== 'win32')('BashTool background — Windows kill tree', () => { - it.todo('stop() terminates grandchild processes via taskkill /T'); -});