fix: remove incorrect discord limited warning

This commit is contained in:
Shadow
2026-01-08 23:59:40 -06:00
parent 458cbcfb41
commit 95c2ccbd7b
3 changed files with 11 additions and 6 deletions

View File

@@ -331,12 +331,12 @@ describe("providers command", () => {
accountId: "default",
enabled: true,
configured: true,
application: { intents: { messageContent: "limited" } },
application: { intents: { messageContent: "disabled" } },
},
],
});
expect(lines.join("\n")).toMatch(/Warnings:/);
expect(lines.join("\n")).toMatch(/Message Content Intent is limited/i);
expect(lines.join("\n")).toMatch(/Message Content Intent is disabled/i);
expect(lines.join("\n")).toMatch(/Run: clawdbot doctor/);
});