chore(auth): rename Claude CLI to Claude Code CLI (#915)

Thanks @SeanZoR.

Co-authored-by: Sean Katz <connect@sean8.com>
This commit is contained in:
Peter Steinberger
2026-01-14 19:57:42 +00:00
parent b4ba6e4eaf
commit e943e63174
4 changed files with 7 additions and 11 deletions

View File

@@ -269,9 +269,7 @@ describe("sendMessageTelegram caption splitting", () => {
message_id: 80,
chat: { id: chatId },
});
const sendMessage = vi
.fn()
.mockRejectedValue(new Error("400: Bad Request: chat not found"));
const sendMessage = vi.fn().mockRejectedValue(new Error("400: Bad Request: chat not found"));
const api = { sendPhoto, sendMessage } as unknown as {
sendPhoto: typeof sendPhoto;
sendMessage: typeof sendMessage;
@@ -289,9 +287,7 @@ describe("sendMessageTelegram caption splitting", () => {
api,
mediaUrl: "https://example.com/photo.jpg",
}),
).rejects.toThrow(
/Telegram send failed: chat not found \(chat_id=123\)\./,
);
).rejects.toThrow(/Telegram send failed: chat not found \(chat_id=123\)\./);
});
it("does not send follow-up text when caption is empty", async () => {