From 720824d519971a8e3a3df44a97e71f87907f091c Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 22 Jan 2022 21:10:52 -0800 Subject: [PATCH] Update OG tags test --- test/automated/browser/bot-share-search-scrapers.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/automated/browser/bot-share-search-scrapers.test.js b/test/automated/browser/bot-share-search-scrapers.test.js index 35e6112b8..e25b99e8a 100644 --- a/test/automated/browser/bot-share-search-scrapers.test.js +++ b/test/automated/browser/bot-share-search-scrapers.test.js @@ -30,10 +30,10 @@ describe('Video embed page', () => { await page.waitForSelector('h3'); const ogVideo = await getMetaTagContent('og:video'); - expect(ogVideo).toBe('http://localhost:5309/hls/stream.m3u8'); + expect(ogVideo).toBe('http://localhost:5309/embed/video'); const ogVideoType = await getMetaTagContent('og:video:type'); - expect(ogVideoType).toBe('application/x-mpegURL'); + expect(ogVideoType).toBe('text/html'); // When stream is live the thumbnail is provided as the image. const ogImage = await getMetaTagContent('og:image');