feat(telegram): show user id in pairing

This commit is contained in:
Peter Steinberger
2026-01-09 00:01:23 +01:00
parent 829782c42c
commit 490bbd10fc
5 changed files with 74 additions and 1 deletions

View File

@@ -284,6 +284,9 @@ describe("createTelegramBot", () => {
expect(replySpy).not.toHaveBeenCalled();
expect(sendMessageSpy).toHaveBeenCalledTimes(1);
expect(sendMessageSpy.mock.calls[0]?.[0]).toBe(1234);
expect(String(sendMessageSpy.mock.calls[0]?.[1])).toContain(
"Your Telegram user id: 999",
);
expect(String(sendMessageSpy.mock.calls[0]?.[1])).toContain(
"Pairing code:",
);