test(frontend): UIUX E2E 测试 — 新增路由导航/创始人端/Admin端/工作台/移动端适配

新增 6 个 E2E 测试文件,覆盖 2-task-uiux.md 全部 50 项任务:
- uiux-navigation.spec.ts: 8 tests (today/compare/threads/workspace/ooda/ai-plus/profiles)
- sidebar-navigation.spec.ts: 6 tests (投资人 Sidebar 6 业务域)
- founder-uiux.spec.ts: 7 tests (创始人端 6 域导航)
- admin-uiux.spec.ts: 3 tests (Admin 6 管理域 + 商业秘密保护)
- workbench-uiux.spec.ts: 5 tests (Highlights/WorkMode/Tab/InsightRail)
- mobile-uiux.spec.ts: 5 tests (移动端抽屉导航 + 创始人底部导航)

同时修复全部 no-explicit-any 警告,替换为 TypeScript 接口定义。

测试结果: 41 E2E passed, 405 backend passed
This commit is contained in:
selfrelease
2026-07-19 20:37:25 +08:00
parent 3a905da35b
commit f4ddcab2ca
62 changed files with 1549 additions and 369 deletions
+19 -10
View File
@@ -1,20 +1,29 @@
"use client";
import { useEffect, useState } from "react";
import { Bot } from "lucide-react";
import { listAgentExecutions, reviewAgentExecution } from "@/lib/api-v2";
import { PageContainer, Badge, TableEmpty } from "@/components/shared/PageContainer";
import { PageContainer, Badge} from "@/components/shared/PageContainer";
import { LoadingSpinner } from "@/components/shared/LoadingSpinner";
import { EmptyState } from "@/components/shared/EmptyState";
import { toast } from "sonner";
/** Agent 执行记录项。 */
interface AgentExecution {
id: string;
agent_name: string;
autonomy_level: string;
output_summary: string;
duration_ms?: number;
review_status: string;
}
export default function AgentsPage() {
const [items, setItems] = useState<Record<string, any>[]>([]);
const [items, setItems] = useState<AgentExecution[]>([]);
const [isLoading, setIsLoading] = useState(true);
const load = () => {
listAgentExecutions()
.then((resp) => setItems((resp.data as Record<string, any>[]) ?? []))
.then((resp) => setItems((resp.data as AgentExecution[]) ?? []))
.catch(() => setItems([]))
.finally(() => setIsLoading(false));
};
@@ -53,26 +62,26 @@ export default function AgentsPage() {
<tbody className="divide-y divide-gray-100 bg-white">
{items.map((item, i) => (
<tr key={i}>
<td className="px-4 py-2 text-gray-900">{item.agent_name as string}</td>
<td className="px-4 py-2"><Badge color={item.autonomy_level === "L4" ? "red" : item.autonomy_level === "L3" ? "amber" : "blue"}>{item.autonomy_level as string}</Badge></td>
<td className="px-4 py-2 text-gray-600 max-w-xs truncate">{item.output_summary as string}</td>
<td className="px-4 py-2 text-gray-900">{item.agent_name}</td>
<td className="px-4 py-2"><Badge color={item.autonomy_level === "L4" ? "red" : item.autonomy_level === "L3" ? "amber" : "blue"}>{item.autonomy_level}</Badge></td>
<td className="px-4 py-2 text-gray-600 max-w-xs truncate">{item.output_summary}</td>
<td className="px-4 py-2 text-gray-500">{item.duration_ms ? `${item.duration_ms}ms` : "-"}</td>
<td className="px-4 py-2">
<Badge color={item.review_status === "approved" ? "green" : item.review_status === "rejected" ? "red" : "amber"}>
{item.review_status as string}
{item.review_status}
</Badge>
</td>
<td className="px-4 py-2">
{item.review_status === "pending" && (
<div className="flex gap-1">
<button
onClick={() => handleReview(item.id as string, "approved")}
onClick={() => handleReview(item.id, "approved")}
className="rounded bg-emerald-600 px-2 py-0.5 text-xs text-white hover:bg-emerald-700"
>
</button>
<button
onClick={() => handleReview(item.id as string, "rejected")}
onClick={() => handleReview(item.id, "rejected")}
className="rounded bg-rose-600 px-2 py-0.5 text-xs text-white hover:bg-rose-700"
>