From aba77aea6b7c594a50da313438457b033b716131 Mon Sep 17 00:00:00 2001 From: jesse-merhi <79823012+jesse-merhi@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:51:45 +1000 Subject: [PATCH] test(ui): complete Custodian panel fixtures --- .../custodian/custodian-panel.test.ts | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/ui/src/components/custodian/custodian-panel.test.ts b/ui/src/components/custodian/custodian-panel.test.ts index f9db66b158ca..d7cb5414d231 100644 --- a/ui/src/components/custodian/custodian-panel.test.ts +++ b/ui/src/components/custodian/custodian-panel.test.ts @@ -106,7 +106,15 @@ describe("custodian panel", () => { it("hides and restores the dock across full-page suppression", async () => { const { panel, store } = await mountPanel(); store.messages = [ - { id: 1, role: "user", text: "Check this system", at: 1, question: null, step: null }, + { + id: 1, + role: "user", + text: "Check this system", + at: 1, + question: null, + step: null, + structuredResponse: null, + }, ]; panel.suppressed = false; @@ -194,7 +202,15 @@ describe("custodian panel", () => { it("updates the panel mascot mood with shared sending state", async () => { const { panel, store } = await mountPanel(); store.messages = [ - { id: 1, role: "user", text: "Check this system", at: 1, question: null, step: null }, + { + id: 1, + role: "user", + text: "Check this system", + at: 1, + question: null, + step: null, + structuredResponse: null, + }, ]; panel.suppressed = false; panel.minimizeRequestId = 1;