test(agent): pin harness resource formatting

This commit is contained in:
Mario Zechner
2026-05-09 19:55:48 +02:00
parent 401017a3e8
commit f13e6a88ab
5 changed files with 69 additions and 43 deletions
@@ -169,7 +169,7 @@ function errorMessage(error: unknown, fallback: string): string {
return error instanceof Error ? error.message : fallback;
}
/** Parse slash-command arguments using simple shell-style single and double quotes. */
/** Parse an argument string using simple shell-style single and double quotes. */
export function parseCommandArgs(argsString: string): string[] {
const args: string[] = [];
let current = "";