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";
5
5
const OG_MD5 = "6e5e794ac0c27598a331690f96f05d00" ;
6
6
const API_OG_MD5 = "cac95fc3e2d4d52870c0536bb18ba85b" ;
7
7
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 ( {
9
10
page,
10
11
request,
11
12
} ) => {
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ test.describe("next/head", () => {
6
6
const title = await page . title ( ) ;
7
7
expect ( title ) . toBe ( "OpenNext head" ) ;
8
8
} ) ;
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 } ) => {
10
11
await page . goto ( "/head" ) ;
11
12
const ogTitle = await page
12
13
. locator ( 'meta[property="og:title"]' )
You can’t perform that action at this time.
0 commit comments