From ed9b098469cc2a08f3d5204c701e6151c309377a Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 3 May 2026 12:13:05 -0500 Subject: [PATCH] fix e2e test --- web/e2e/specs/replay.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/e2e/specs/replay.spec.ts b/web/e2e/specs/replay.spec.ts index eb19ed57d..c09abf10b 100644 --- a/web/e2e/specs/replay.spec.ts +++ b/web/e2e/specs/replay.spec.ts @@ -31,7 +31,7 @@ test.describe("Replay — no active session @medium", () => { await expect( frigateApp.page.getByRole("heading", { level: 2, - name: /No Active Replay Session/i, + name: /No Active Debug Replay Session/i, }), ).toBeVisible({ timeout: 10_000 }); const goButton = frigateApp.page.getByRole("button", { @@ -48,7 +48,7 @@ test.describe("Replay — no active session @medium", () => { await expect( frigateApp.page.getByRole("heading", { level: 2, - name: /No Active Replay Session/i, + name: /No Active Debug Replay Session/i, }), ).toBeVisible({ timeout: 10_000 }); await frigateApp.page @@ -297,7 +297,7 @@ test.describe("Replay — mobile @medium @mobile", () => { await expect( frigateApp.page.getByRole("heading", { level: 2, - name: /No Active Replay Session/i, + name: /No Active Debug Replay Session/i, }), ).toBeVisible({ timeout: 10_000 }); });