From e99257a0cc92bdb9ac6224b546ec898f588ccab4 Mon Sep 17 00:00:00 2001 From: jariy17 Date: Mon, 31 Aug 2026 20:14:59 +0000 Subject: [PATCH] test(feedback): add feedback to the root command-tree assertion The feedback command was registered on the root handler in PR #2149 but root.test.tsx's expected subcommand list was not updated, so 'builds the agentcore command tree with its subcommands' failed in CI. Add 'feedback' in its registration position (after eval). --- src/handlers/root.test.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/handlers/root.test.tsx b/src/handlers/root.test.tsx index b3f4e3386..63f5dfc1c 100644 --- a/src/handlers/root.test.tsx +++ b/src/handlers/root.test.tsx @@ -17,6 +17,7 @@ describe("createRootHandler", () => { "memory", "gateway", "eval", + "feedback", "config", "project", ]);