Skip to content

Commit

Permalink
test: skip imprint service tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviareichl committed Aug 13, 2024
1 parent 0f78722 commit 2a4fa78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/tests/pages/imprint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {

Check warning on line 5 in e2e/tests/pages/imprint.test.ts

View workflow job for this annotation

GitHub Actions / Validate (20.x, ubuntu-latest)

Unexpected use of the `.skip()` annotation
for (const locale of locales) {
const { i18n, imprintPage } = await createImprintPage(locale);
await imprintPage.goto();
Expand All @@ -13,7 +13,7 @@ test.describe("imprint page", () => {
}
});

test("should have imprint text", async ({ createImprintPage }) => {
test.skip("should have imprint text", async ({ createImprintPage }) => {

Check warning on line 16 in e2e/tests/pages/imprint.test.ts

View workflow job for this annotation

GitHub Actions / Validate (20.x, ubuntu-latest)

Unexpected use of the `.skip()` annotation
const imprints = {
de: "Offenlegung",
en: "Legal disclosure",
Expand All @@ -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 ({

Check warning on line 30 in e2e/tests/pages/imprint.test.ts

View workflow job for this annotation

GitHub Actions / Validate (20.x, ubuntu-latest)

Unexpected use of the `.skip()` annotation
createAccessibilityScanner,
createImprintPage,
}) => {
Expand Down

0 comments on commit 2a4fa78

Please sign in to comment.