fix(tests): update E2E navigation test to check for "off-grid communication" text instead of "Secure, local-first communication" for improved accuracy

This commit is contained in:
Ivan
2026-04-15 20:29:09 -05:00
parent dfd93fa9ad
commit ff3f8707af
+1 -1
View File
@@ -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,
});
});