Fixed invalid telegram contact url

This commit is contained in:
Stig Rune
2019-07-24 22:39:06 +02:00
parent d1aa92184e
commit 8737090d05
11 changed files with 11 additions and 11 deletions

View File

@@ -6,6 +6,6 @@ test('getContactHref', () => {
expect(getContactHref('github', '#')).toBe('https://github.com/#');
expect(getContactHref('email', '#')).toBe('mailto:#');
expect(getContactHref('vkontakte', '#')).toBe('https://vk.com/#');
expect(getContactHref('telegram', '#')).toBe('telegram:#');
expect(getContactHref('telegram', '#')).toBe('https://t.me/#');
expect(getContactHref('rss', '#')).toBe('#');
});