Files
ai-video-fullstack/frontend/src/components/pages/BatchTestPage.tsx
Xin Wang 36117b976e feat(frontend): split test assistant nav into cases and batch pages
Make 测试助手 a sidebar section like 监控观察, with placeholder routes for 测试用例 and 批量测试.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-07 16:00:50 +08:00

11 lines
248 B
TypeScript

import { PlaceholderPage } from "./PlaceholderPage";
export function BatchTestPage() {
return (
<PlaceholderPage
title="批量测试"
description="按用例集批量跑测助手,汇总通过率与失败详情。"
/>
);
}