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: 1 addition & 2 deletions packages/tests-e2e/tests/appRouter/og.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}) => {
Expand Down
3 changes: 1 addition & 2 deletions packages/tests-e2e/tests/pagesRouter/head.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"]')
Expand Down
Loading