File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ import { validateMd5 } from "../utils";
55const OG_MD5 = "6e5e794ac0c27598a331690f96f05d00" ;
66const API_OG_MD5 = "cac95fc3e2d4d52870c0536bb18ba85b" ;
77
8- test ( "Open-graph image to be in metatags and present" , async ( {
8+ // We skip this test for now until Next fixes https://github.com/vercel/next.js/issues/81655
9+ test . skip ( "Open-graph image to be in metatags and present" , async ( {
910 page,
1011 request,
1112} ) => {
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ test.describe("next/head", () => {
66 const title = await page . title ( ) ;
77 expect ( title ) . toBe ( "OpenNext head" ) ;
88 } ) ;
9- test ( "should have the correct meta tags" , async ( { page } ) => {
9+ // We skip this test for now until Next fixes https://github.com/vercel/next.js/issues/81655
10+ test . skip ( "should have the correct meta tags" , async ( { page } ) => {
1011 await page . goto ( "/head" ) ;
1112 const ogTitle = await page
1213 . locator ( 'meta[property="og:title"]' )
You can’t perform that action at this time.
0 commit comments