diff --git a/qa/full_dogfood.mjs b/qa/full_dogfood.mjs index 4b97805..474a69c 100644 --- a/qa/full_dogfood.mjs +++ b/qa/full_dogfood.mjs @@ -61,7 +61,7 @@ await p.waitForTimeout(800); await p.locator(".hub-chip", { hasText: /Command Assistant/ }).click(); await p.waitForTimeout(1200); const toolNames = await p.locator(".agent-tool-name").allTextContents(); -record("assistant_shows_five_tools", toolNames.length === 5, toolNames.join(", ")); +record("assistant_shows_at_least_five_tools", toolNames.length >= 5, toolNames.join(", ")); const beforeCount = await p.locator(".agent-turn-agent .agent-turn-body").count(); await p.locator(".agent-composer textarea").fill("list processes"); await p.locator(".agent-composer button", { hasText: /Send/i }).click();