From 131e661b010e13fab9f0fa71fda023b069de01a3 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 26 Jun 2025 09:46:41 -0700 Subject: [PATCH] fix test --- __tests__/lib/string.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts index 267598337a..0f53d386a3 100644 --- a/__tests__/lib/string.test.ts +++ b/__tests__/lib/string.test.ts @@ -1009,7 +1009,7 @@ describe('tenorUrlToBskyGifUrl', () => { 'returns url with t.gifs.bsky.app as hostname for input url', input => { const out = tenorUrlToBskyGifUrl(input) - expect(out).toEqual(true) + expect(out.startsWith('https://t.gifs.bsky.app/')).toEqual(true) }, ) })