mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
fix(Telegram Node): Include error message in output when continueOnFail is set (#15540)
This commit is contained in:
@@ -28,6 +28,7 @@ describe('Telegram', () => {
|
||||
const mock = nock(credentials.telegramApi.baseUrl);
|
||||
|
||||
mock.post('/bottestToken/getChat').reply(200, getChatResponse);
|
||||
mock.post('/bottestToken/getChat').reply(404, { error: 'Chat not found' });
|
||||
mock.post('/bottestToken/sendMessage').reply(200, sendMessageResponse);
|
||||
mock.post('/bottestToken/sendMediaGroup').reply(200, sendMediaGroupResponse);
|
||||
mock.post('/bottestToken/sendLocation').reply(200, sendLocationMessageResponse);
|
||||
|
||||
Reference in New Issue
Block a user