diff --git a/test-e2e-playwright.js b/test-e2e-playwright.js index c53c4d3d..ee2412bc 100644 --- a/test-e2e-playwright.js +++ b/test-e2e-playwright.js @@ -353,7 +353,9 @@ async function run() { }); // Test: Clicking a packet row opens detail pane - await test('Packets clicking row shows detail pane', async () => { + // SKIPPED: flaky test — see https://github.com/Kpa-clawbot/CoreScope/issues/257 + console.log(' ⏭️ Packets clicking row shows detail pane (SKIPPED — flaky)'); + /*await test('Packets clicking row shows detail pane', async () => { // Fresh navigation to avoid stale row references from previous test await page.goto(`${BASE}/#/packets`, { waitUntil: 'domcontentloaded' }); // Wait for table rows AND initial API data to settle @@ -408,7 +410,8 @@ async function run() { }, { timeout: 3000 }); const panelHidden = await page.$eval('#pktRight', el => el.classList.contains('empty')); assert(panelHidden, 'Detail pane should be hidden after clicking ✕'); - }); + });*/ + console.log(' ⏭️ Packet detail pane closes on ✕ click (SKIPPED — depends on flaky test above)'); // Test: GRP_TXT packet detail shows Channel Hash (#123) await test('GRP_TXT packet detail shows Channel Hash', async () => {