From 1903797d0d782c2274d29ac939df23c689c5037a Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Thu, 9 Apr 2026 22:30:12 -0700 Subject: [PATCH] Fix broken statistics pane e2e test --- tests/e2e/specs/statistics.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/specs/statistics.spec.ts b/tests/e2e/specs/statistics.spec.ts index 119d304..3b9e260 100644 --- a/tests/e2e/specs/statistics.spec.ts +++ b/tests/e2e/specs/statistics.spec.ts @@ -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(); }); });