From 03bb9481a250d85a8dc062ae1d8a213025837094 Mon Sep 17 00:00:00 2001 From: Eunjae Lee Date: Thu, 8 Jan 2026 16:37:50 +0100 Subject: [PATCH] fix: update E2E test to match German translation without '+' prefix (#26589) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- apps/web/playwright/event-types.e2e.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/web/playwright/event-types.e2e.ts b/apps/web/playwright/event-types.e2e.ts index 630d40aa2e..afabbf3bd9 100644 --- a/apps/web/playwright/event-types.e2e.ts +++ b/apps/web/playwright/event-types.e2e.ts @@ -1,8 +1,7 @@ -import type { Page } from "@playwright/test"; -import { expect } from "@playwright/test"; - import { WEBAPP_URL } from "@calcom/lib/constants"; import { randomString } from "@calcom/lib/random"; +import type { Page } from "@playwright/test"; +import { expect } from "@playwright/test"; import { test } from "./lib/fixtures"; import { @@ -550,7 +549,7 @@ test.describe("Event Types tests", () => { await expect(page.locator(`text="Ihr Name"`).nth(0)).toBeVisible(); await expect(page.locator(`text="E-Mail Adresse"`).nth(0)).toBeVisible(); await expect(page.locator(`text="Zusätzliche Notizen"`).nth(0)).toBeVisible(); - await expect(page.locator(`text="+ Weitere Gäste"`).nth(0)).toBeVisible(); + await expect(page.locator(`text="Weitere Gäste"`).nth(0)).toBeVisible(); await expect(page.locator(`text="Zurück"`).nth(0)).toBeVisible(); await expect(page.locator(`text="Bestätigen"`).nth(0)).toBeVisible(); });