diff --git a/tests/e2e/gui-settings-general.spec.ts b/tests/e2e/gui-settings-general.spec.ts index 7a9244e8..e3fa2f11 100644 --- a/tests/e2e/gui-settings-general.spec.ts +++ b/tests/e2e/gui-settings-general.spec.ts @@ -12,7 +12,7 @@ test.describe("GUI Settings - Dialog Navigation", () => { await expect(page.locator("h2").filter({ hasText: "Settings" })).toBeVisible(); }); - test("dialog has correct dimensions (85vh, max-w-3xl)", async ({ loggedInPage: page }) => { + test("dialog has correct dimensions (85dvh, max-w-3xl)", async ({ loggedInPage: page }) => { await openSettings(page); const dialog = page.locator(".relative.bg-background.border.border-border.rounded-xl"); @@ -20,7 +20,7 @@ test.describe("GUI Settings - Dialog Navigation", () => { // Verify the dialog uses the expected sizing classes await expect(dialog).toHaveClass(/max-w-3xl/); - await expect(dialog).toHaveClass(/h-\[85vh\]/); + await expect(dialog).toHaveClass(/h-\[85dvh\]/); }); test("dialog sidebar lists navigable section tabs", async ({ loggedInPage: page }) => {