test: add mvp verification plan

This commit is contained in:
2026-07-18 16:50:04 +08:00
parent 8fc8298a62
commit ddebc022fa
9 changed files with 173 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { expect, test } from '@playwright/test';
test('project workbench shell renders', async ({ page }) => {
await page.goto('/');
await expect(page.getByText('项目工作台')).toBeVisible();
await expect(page.getByLabel('服务器登录')).toBeVisible();
await expect(page.getByLabel('服务器 IP 或域名')).toBeVisible();
await expect(page.getByLabel('项目总览')).toBeVisible();
});