Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/tests-e2e/tests/appRouter/og.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { validateMd5 } from "../utils";
const OG_MD5 = "6e5e794ac0c27598a331690f96f05d00";
const API_OG_MD5 = "cac95fc3e2d4d52870c0536bb18ba85b";

test("Open-graph image to be in metatags and present", async ({
// We skip this test for now until Next fixes https://github.com/vercel/next.js/issues/81655
test.skip("Open-graph image to be in metatags and present", async ({
page,
request,
}) => {
Expand Down
3 changes: 2 additions & 1 deletion packages/tests-e2e/tests/pagesRouter/head.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ test.describe("next/head", () => {
const title = await page.title();
expect(title).toBe("OpenNext head");
});
test("should have the correct meta tags", async ({ page }) => {
// We skip this test for now until Next fixes https://github.com/vercel/next.js/issues/81655
test.skip("should have the correct meta tags", async ({ page }) => {
await page.goto("/head");
const ogTitle = await page
.locator('meta[property="og:title"]')
Expand Down
Loading