Skip to content

Commit ecdb67c

Browse files
authored
chore(e2e): Revert back tests we skipped (#929)
* revert skips * rm comments
1 parent 071d94e commit ecdb67c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import { validateMd5 } from "../utils";
55
const OG_MD5 = "83cfda4e78b037aa3d9ab465292550ef";
66
const API_OG_MD5 = "6a22b4ff74e0dd8c377e2640dafe3e40";
77

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 ({
8+
test("Open-graph image to be in metatags and present", async ({
109
page,
1110
request,
1211
}) => {

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ test.describe("next/head", () => {
66
const title = await page.title();
77
expect(title).toBe("OpenNext head");
88
});
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 }) => {
9+
test("should have the correct meta tags", async ({ page }) => {
1110
await page.goto("/head");
1211
const ogTitle = await page
1312
.locator('meta[property="og:title"]')

0 commit comments

Comments
 (0)