fix(api): align alerts/commands contracts and ship full-site test suite.

Restore alert history filters and stats fields, paginate command/session logs for the SPA, show script labels on schedules, and land integration/E2E coverage with rebuilt web assets.
This commit is contained in:
Nexus Agent
2026-06-09 02:13:13 +08:00
parent 091fb97291
commit 0f6f91e61a
7017 changed files with 5553 additions and 79482 deletions
+10
View File
@@ -0,0 +1,10 @@
/** E2E-INST-001 — install.html reachable (MCP-INST-001 step UI waived per product) */
import { test, expect } from '@playwright/test'
const BASE = process.env.NEXUS_E2E_BASE || 'http://127.0.0.1:8600'
test('E2E-INST-001 install.html reachable', async ({ page }) => {
const res = await page.goto(`${BASE.replace(/\/$/, '')}/app/install.html`)
expect(res?.status()).toBe(200)
await expect(page.getByText('Nexus 6.0 安装向导')).toBeVisible({ timeout: 15000 })
})