test(ui): complete Custodian panel fixtures

This commit is contained in:
jesse-merhi
2026-08-13 12:51:45 +10:00
parent e82cda0b0b
commit aba77aea6b
@@ -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;