Stabilize bash kill escalation test

This commit is contained in:
Yichen Jiang
2026-07-05 21:54:50 +08:00
parent 532abbc754
commit 5ad483d120

View File

@@ -90,8 +90,8 @@ describe('LocalBashExecutor.run', () => {
it('kill escalation uses the configured graceMs (a TERM-trapping task dies by SIGKILL)', async () => {
const { bash } = await setup() // setup pins graceMs: 200 via config
const task = bash.start(bash.resolve({ command: 'trap \'\' TERM; sleep 60' }))
await new Promise(resolve => setTimeout(resolve, 100))
const task = bash.start(bash.resolve({ command: 'trap \'\' TERM; echo trap-ready; sleep 60' }))
await readUntil(bash, task.id, 'trap-ready')
bash.kill(task.id)
await task.done
expect(task.signal).toBe('SIGKILL')