test coverage

This commit is contained in:
Jarrod Watts
2026-01-03 18:52:12 +11:00
parent 36ba791cb1
commit fcaa8da6d6
13 changed files with 651 additions and 22 deletions

View File

@@ -140,7 +140,6 @@ function extractTarget(toolName: string, input?: Record<string, unknown>): strin
case 'Bash':
const cmd = input.command as string;
return cmd?.slice(0, 30) + (cmd?.length > 30 ? '...' : '');
default:
return undefined;
}
return undefined;
}