From df845ec61062da001c4dc1d1852fa356797a9a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Wed, 25 Mar 2026 02:17:13 +0100 Subject: [PATCH] Fix E2E test for renamed register heading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The i18n change renamed "Create Account" to "Register" — update the E2E test to match. Co-Authored-By: Claude Opus 4.6 (1M context) --- e2e/journal.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/journal.test.ts b/e2e/journal.test.ts index e7699a6..08f99b3 100644 --- a/e2e/journal.test.ts +++ b/e2e/journal.test.ts @@ -15,7 +15,7 @@ test.describe("Journal", () => { test("registration page renders correctly", async ({ page }) => { await page.goto("/auth/register"); - await expect(page.getByText("Create Account")).toBeVisible(); + await expect(page.getByText("Register")).toBeVisible(); await expect(page.getByLabel("Email")).toBeVisible(); await expect(page.getByLabel("Username")).toBeVisible(); await expect(page.getByRole("button", { name: /Register with Passkey/ })).toBeVisible();