chore: keep gate green

This commit is contained in:
Peter Steinberger
2026-01-11 04:41:44 +01:00
parent 0b2ff4cfd9
commit 7343597075
2 changed files with 43 additions and 33 deletions

View File

@@ -636,13 +636,15 @@ describe("doctor", () => {
expect(
note.mock.calls.some(
([message, title]) =>
title === "Sandbox" &&
typeof message === "string" &&
message
.replace(/\s+/g, " ")
.includes('agents.list (id "work") sandbox docker') &&
message.replace(/\s+/g, " ").includes('scope resolves to "shared"'),
([message, title]) => {
if (title !== "Sandbox") return false;
if (typeof message !== "string") return false;
const normalized = message.replace(/\s+/g, " ");
return (
normalized.includes('agents.list (id "work") sandbox docker') &&
normalized.includes('scope resolves to "shared"')
);
},
),
).toBe(true);
});