Files
Nexus/frontend/e2e/pages/terminal.spec.mjs
T
2026-07-08 22:31:31 +08:00

10 lines
397 B
JavaScript

/** E2E-TERM-001 — terminal idle state without live SSH (MCP-TERM-001沉淀) */
import { test, expect } from '../fixtures.mjs'
import { login, nav } from '../helpers.mjs'
test('E2E-TERM-001 terminal page idle prompt', async ({ page }) => {
await login(page)
await nav(page, '/terminal')
await expect(page.getByText('选择一台服务器开始会话')).toBeVisible({ timeout: 20000 })
})