Updated test for plural video

This commit is contained in:
dangered wolf 2022-08-13 02:21:02 -04:00
parent 5c4956032b
commit c5d6b36dc9
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -114,7 +114,7 @@ test('API fetch video Tweet', async () => {
expect(tweet.lang).toEqual('en');
expect(tweet.replying_to).toBeNull();
expect(tweet.media?.video).toBeTruthy();
const video = tweet.media?.video as APIVideo;
const video = tweet.media?.videos?.[0] as APIVideo;
expect(video.url).toEqual(
'https://video.twimg.com/amplify_video/854415175776059393/vid/720x720/dNEi0crU-jA4mTtr.mp4'
);