2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-08-22 18:07:16 +00:00

fix(Test): Update test for new chat invite link format

This commit is contained in:
danielperez9430 2021-12-07 16:41:35 +01:00
parent 68ac69cf99
commit 19b5fc5bd3

View File

@ -904,7 +904,7 @@ describe('TelegramBot', function telegramSuite() {
}); });
it('should export the group invite link', function test() { it('should export the group invite link', function test() {
return bot.exportChatInviteLink(GROUPID).then(resp => { return bot.exportChatInviteLink(GROUPID).then(resp => {
assert(resp.match(/^https:\/\/t\.me\/joinchat\/.+$/i), 'is a telegram invite link'); assert(resp.match(/^https:\/\/t\.me\/.+$/i), 'is a telegram invite link');
}); });
}); });
}); });
@ -918,7 +918,7 @@ describe('TelegramBot', function telegramSuite() {
}); });
it('should create a chat invite link', function test() { it('should create a chat invite link', function test() {
return bot.createChatInviteLink(GROUPID).then(resp => { return bot.createChatInviteLink(GROUPID).then(resp => {
assert(resp.invite_link.match(/^https:\/\/t\.me\/joinchat\/.+$/i), 'is a telegram invite link'); assert(resp.invite_link.match(/^https:\/\/t\.me\/.+$/i), 'is a telegram invite link');
inviteLink = resp.invite_link; inviteLink = resp.invite_link;
}); });
}); });