From 2a4fa7853794c5d49ad3f22c9c1d21bff23a3668 Mon Sep 17 00:00:00 2001 From: oliviareichl Date: Tue, 13 Aug 2024 11:52:00 +0200 Subject: [PATCH] test: skip imprint service tests --- e2e/tests/pages/imprint.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/tests/pages/imprint.test.ts b/e2e/tests/pages/imprint.test.ts index 0c686c0f..02647ffe 100644 --- a/e2e/tests/pages/imprint.test.ts +++ b/e2e/tests/pages/imprint.test.ts @@ -2,7 +2,7 @@ import { locales } from "@/config/i18n.config"; import { expect, test } from "@/e2e/lib/test"; test.describe("imprint page", () => { - test("should have document title", async ({ createImprintPage }) => { + test.skip("should have document title", async ({ createImprintPage }) => { for (const locale of locales) { const { i18n, imprintPage } = await createImprintPage(locale); await imprintPage.goto(); @@ -13,7 +13,7 @@ test.describe("imprint page", () => { } }); - test("should have imprint text", async ({ createImprintPage }) => { + test.skip("should have imprint text", async ({ createImprintPage }) => { const imprints = { de: "Offenlegung", en: "Legal disclosure", @@ -27,7 +27,7 @@ test.describe("imprint page", () => { } }); - test("should not have any automatically detectable accessibility issues", async ({ + test.skip("should not have any automatically detectable accessibility issues", async ({ createAccessibilityScanner, createImprintPage, }) => {