Fix an e2e test and add a warning about nodes not showing up on community listings

This commit is contained in:
Jack Kingsman
2026-03-02 19:15:28 -08:00
parent 99f31c8226
commit 81694e7ab3
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ test.describe('Contacts sidebar & info pane', () => {
// Scope to the Contact Info pane to avoid matching the header pubkey
const infoPane = page.getByLabel('Contact Info');
await expect(infoPane.locator('[title="Click to copy"]')).toBeVisible({ timeout: 10_000 });
await expect(infoPane.getByText(named.public_key.slice(0, 8))).toBeVisible();
await expect(infoPane.getByText(named.public_key.slice(0, 8)).first()).toBeVisible();
});
test('copy public key from contact info pane', async ({ page }) => {