From 928a626c2e82eb2663e16800a87b1c34c0ab83d5 Mon Sep 17 00:00:00 2001 From: Hailey <153161762+haileyok@users.noreply.github.com> Date: Mon, 8 Jan 2024 13:55:48 -0800 Subject: support intl tenor links (#2438) * support intl tenor links * update test cases --- __tests__/lib/string.test.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '__tests__/lib/string.test.ts') diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts index 89df7a6bd..edddcb3e0 100644 --- a/__tests__/lib/string.test.ts +++ b/__tests__/lib/string.test.ts @@ -455,6 +455,7 @@ describe('parseEmbedPlayerFromUrl', () => { 'https://tenor.com/notView/gifId', 'https://tenor.com/view', 'https://tenor.com/view/gifId.gif', + 'https://tenor.com/intl/view/gifId.gif', ] const outputs = [ @@ -742,6 +743,13 @@ describe('parseEmbedPlayerFromUrl', () => { hideDetails: true, playerUri: 'https://tenor.com/view/gifId.gif', }, + { + type: 'tenor_gif', + source: 'tenor', + isGif: true, + hideDetails: true, + playerUri: 'https://tenor.com/intl/view/gifId.gif', + }, ] it('correctly grabs the correct id from uri', () => { -- cgit 1.4.1