Make 测试助手 a sidebar section like 监控观察, with placeholder routes for 测试用例 and 批量测试. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import { PlaceholderPage } from "./PlaceholderPage";
|
|
|
|
export function BatchTestPage() {
|
|
return (
|
|
<PlaceholderPage
|
|
title="批量测试"
|
|
description="按用例集批量跑测助手,汇总通过率与失败详情。"
|
|
/>
|
|
);
|
|
}
|