Fix broken statistics pane e2e test

This commit is contained in:
Jack Kingsman
2026-04-09 22:30:12 -07:00
parent bb5af5ba82
commit 1903797d0d
+1 -1
View File
@@ -15,6 +15,6 @@ test.describe('Statistics page', () => {
await expect(page.locator('h4').getByText('Network')).toBeVisible({ timeout: 10_000 });
await expect(page.getByText('Contacts', { exact: true }).first()).toBeVisible();
await expect(page.getByText('Channels', { exact: true }).first()).toBeVisible();
await expect(page.locator('h4').getByText('Packets')).toBeVisible();
await expect(page.locator('h4').getByText('Packets', { exact: true })).toBeVisible();
});
});