diff --git a/packages/tests-e2e/tests/appRouter/og.test.ts b/packages/tests-e2e/tests/appRouter/og.test.ts index ac832149c..179091bc0 100644 --- a/packages/tests-e2e/tests/appRouter/og.test.ts +++ b/packages/tests-e2e/tests/appRouter/og.test.ts @@ -5,8 +5,7 @@ import { validateMd5 } from "../utils"; const OG_MD5 = "83cfda4e78b037aa3d9ab465292550ef"; const API_OG_MD5 = "6a22b4ff74e0dd8c377e2640dafe3e40"; -// 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 ({ +test("Open-graph image to be in metatags and present", async ({ page, request, }) => { diff --git a/packages/tests-e2e/tests/pagesRouter/head.test.ts b/packages/tests-e2e/tests/pagesRouter/head.test.ts index 38f94b91e..ba9b8a03a 100644 --- a/packages/tests-e2e/tests/pagesRouter/head.test.ts +++ b/packages/tests-e2e/tests/pagesRouter/head.test.ts @@ -6,8 +6,7 @@ test.describe("next/head", () => { const title = await page.title(); expect(title).toBe("OpenNext head"); }); - // 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 }) => { + test("should have the correct meta tags", async ({ page }) => { await page.goto("/head"); const ogTitle = await page .locator('meta[property="og:title"]')