From ff3f8707af5d49b13b5e9f9433dbcb576ef39197 Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 15 Apr 2026 20:29:09 -0500 Subject: [PATCH] fix(tests): update E2E navigation test to check for "off-grid communication" text instead of "Secure, local-first communication" for improved accuracy --- tests/e2e/navigation.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/navigation.spec.js b/tests/e2e/navigation.spec.js index 25dc9f3..69c923a 100644 --- a/tests/e2e/navigation.spec.js +++ b/tests/e2e/navigation.spec.js @@ -8,7 +8,7 @@ test.describe("Getting started (tutorial page)", () => { await expect(page.getByRole("heading", { name: /Welcome to\s*MeshChatX/i }).first()).toBeVisible({ timeout: 30000, }); - await expect(page.getByText(/Secure,\s*local-first communication/i).first()).toBeVisible({ + await expect(page.getByText(/off-grid communication/i).first()).toBeVisible({ timeout: 10000, }); });