From 051c21d97fe9d4487f78d96ac026288ba131e5a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Sat, 19 Sep 2026 23:18:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E6=8E=89=E7=AB=8B=E9=A1=B9=E7=AD=96?= =?UTF-8?q?=E5=88=92=E7=94=A8=E4=BE=8B=E9=87=8C=E4=BC=A0=E7=BB=99=20App=20?= =?UTF-8?q?=E7=9A=84=E6=97=A0=E6=95=88=20agentDockVisible=20prop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - apps/ai-game-creator-shell/tests/appSurface/plan-gdd.suite.ts 三处 React.createElement(App, {...}) 不再传 agentDockVisible - 同 design-agent.suite:该 prop 属于 ProjectDevelopmentView,AppProps 未声明,传入不影响任何渲染,只会误导读者以为 Agent dock 被隐藏 --- apps/ai-game-creator-shell/tests/appSurface/plan-gdd.suite.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/ai-game-creator-shell/tests/appSurface/plan-gdd.suite.ts b/apps/ai-game-creator-shell/tests/appSurface/plan-gdd.suite.ts index 55be5f273..274ac8df8 100644 --- a/apps/ai-game-creator-shell/tests/appSurface/plan-gdd.suite.ts +++ b/apps/ai-game-creator-shell/tests/appSurface/plan-gdd.suite.ts @@ -26,7 +26,6 @@ function mountFormalPlanningLane( render( React.createElement(App, { initialProjectPath: harness.projectPath, - agentDockVisible: false, planningStartMode, }), ); @@ -659,7 +658,6 @@ export function registerPlanGddApprovalTests() { render( React.createElement(App, { initialProjectPath: harness.projectPath, - agentDockVisible: false, planningStartMode: true, }), ); @@ -722,7 +720,6 @@ export function registerPlanGddApprovalTests() { React.createElement(App, { initialProjectPath: harness.projectPath, initialPlanningPrompt: '做一个2D弹幕射击游戏', - agentDockVisible: false, planningStartMode: true, }), );