mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-19 14:14:22 +00:00
10 lines
456 B
TypeScript
10 lines
456 B
TypeScript
/**
|
|
* 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');
|
|
});
|