Skip to content

Commit aad469e

Browse files
authored
skip tests (opennextjs#927)
1 parent d7d3966 commit aad469e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/tests-e2e/tests/appRouter/og.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { validateMd5 } from "../utils";
55
const OG_MD5 = "6e5e794ac0c27598a331690f96f05d00";
66
const 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
}) => {

packages/tests-e2e/tests/pagesRouter/head.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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"]')

0 commit comments

Comments
 (0)