From 5f62e46dc4ddb2d37614307304d2e59a4ee1d825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Katharina=20W=C3=BCnsche?= Date: Mon, 15 Apr 2024 16:38:32 +0200 Subject: [PATCH] Disable screenshot comparison tests for now --- e2e/tests/pages/imprint.test.ts | 16 ++++++++-------- e2e/tests/pages/index.test.ts | 14 +++++++------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/e2e/tests/pages/imprint.test.ts b/e2e/tests/pages/imprint.test.ts index c1fd315..32a133e 100644 --- a/e2e/tests/pages/imprint.test.ts +++ b/e2e/tests/pages/imprint.test.ts @@ -40,12 +40,12 @@ test.describe("imprint page", () => { } }); - test("should not have visible changes", async ({ createImprintPage }) => { - for (const locale of locales) { - const { imprintPage } = await createImprintPage(locale); - await imprintPage.goto(); - - await expect(imprintPage.page).toHaveScreenshot(); - } - }); + // test("should not have visible changes", async ({ createImprintPage }) => { + // for (const locale of locales) { + // const { imprintPage } = await createImprintPage(locale); + // await imprintPage.goto(); + + // await expect(imprintPage.page).toHaveScreenshot(); + // } + // }); }); diff --git a/e2e/tests/pages/index.test.ts b/e2e/tests/pages/index.test.ts index e5b4c0a..6ffc8c9 100644 --- a/e2e/tests/pages/index.test.ts +++ b/e2e/tests/pages/index.test.ts @@ -26,12 +26,12 @@ test.describe("index page", () => { } }); - test("should not have visible changes", async ({ createIndexPage }) => { - for (const locale of locales) { - const { indexPage } = await createIndexPage(locale); - await indexPage.goto(); + // test("should not have visible changes", async ({ createIndexPage }) => { + // for (const locale of locales) { + // const { indexPage } = await createIndexPage(locale); + // await indexPage.goto(); - await expect(indexPage.page).toHaveScreenshot(); - } - }); + // await expect(indexPage.page).toHaveScreenshot(); + // } + // }); });