From 52a3373ae6cafaffcd97bb466c42216b896fe5ce Mon Sep 17 00:00:00 2001 From: rcourtman Date: Wed, 26 Aug 2026 05:43:48 +0100 Subject: [PATCH] Cover delayed Proxmox E2E hydration Change-source: pulse-maintainer --- tests/integration/tests/17-proxmox-backups-layout.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/tests/17-proxmox-backups-layout.spec.ts b/tests/integration/tests/17-proxmox-backups-layout.spec.ts index 9cc69ad1d..eb3300ffa 100644 --- a/tests/integration/tests/17-proxmox-backups-layout.spec.ts +++ b/tests/integration/tests/17-proxmox-backups-layout.spec.ts @@ -18,10 +18,10 @@ async function openProxmoxBackups(page: Page) { await sections.getByRole("link", { name: "Backups", exact: true }).click(); await expect(page).toHaveURL(/\/proxmox\/backups\/date$/); // The route commits before the Proxmox snapshot finishes loading. CI can - // take longer than the default locator timeout while all E2E shards share - // the runner, so wait for the destination surface rather than the URL alone. + // take more than a minute while all E2E shards share the runner, so wait for + // the destination surface rather than the URL alone. await expect(page.getByText("Backups per day").first()).toBeVisible({ - timeout: 60_000, + timeout: 120_000, }); await expect( page.getByRole("group", { name: "Activity range" }),