From 8c066ccfd6753d6b0633c9c751b0992ebf330b54 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 16 Feb 2026 22:59:52 +0900 Subject: [PATCH] test: align load_skills error assertions in delegate-task --- src/tools/delegate-task/tools.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/delegate-task/tools.test.ts b/src/tools/delegate-task/tools.test.ts index 36950e8f..a197ca98 100644 --- a/src/tools/delegate-task/tools.test.ts +++ b/src/tools/delegate-task/tools.test.ts @@ -1147,7 +1147,7 @@ describe("sisyphus-task", () => { run_in_background: false, }, toolContext - )).rejects.toThrow("IT IS HIGHLY RECOMMENDED") + )).rejects.toThrow("Invalid arguments: 'load_skills' parameter is REQUIRED") }) test("null skills throws error", async () => { @@ -1189,7 +1189,7 @@ describe("sisyphus-task", () => { load_skills: null, }, toolContext - )).rejects.toThrow("IT IS HIGHLY RECOMMENDED") + )).rejects.toThrow("Invalid arguments: load_skills=null is not allowed") }) test("empty array [] is allowed and proceeds without skill content", async () => {