Integrator: AWS gate fixes and doc counts after cloud landing.
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

Apply SwarmMagnet, uiHelp, AccessDepthPanel, Seer, miningsurgery, and path-tracer test fixes; add agent cloud telemetry fields and main strings import; refresh tests/README and PROBLEMS AWS operator notes.
This commit is contained in:
AetherForge
2026-06-07 10:52:38 -07:00
parent f691270279
commit 35c3271f20
19 changed files with 1090 additions and 146 deletions

View File

@@ -104,8 +104,9 @@ test.describe('Path Tracer E2E', () => {
const card = page.locator('.pt-agent-card').filter({ hasText: E2E_STUB_AGENT_HOSTNAME });
await card.click();
await page.locator('.pt-actions').getByRole('button', { name: /TRACE/i }).click();
await expect(page.getByRole('button', { name: /Fork/i })).toBeVisible({ timeout: 15_000 });
await page.getByRole('button', { name: /Fork/i }).click();
const forkBtn = page.getByRole('button', { name: /Fork/i });
await expect(forkBtn).toBeVisible({ timeout: 15_000 });
await forkBtn.click({ force: true });
await expect(page.getByTestId('pt-timeline-tree')).toBeVisible({ timeout: 10_000 });
await expect(page.getByText(/aggressive/i)).toBeVisible();
await page.getByText('Mermaid branch graph').click();