@@ -132,6 +132,10 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => {
132132 expect ( bundled . find ( ( shard ) => shard . shardName === "core-unit-fast" ) ?. runner ) . toBe (
133133 DEFAULT_NODE_TEST_RUNNER ,
134134 ) ;
135+ expect (
136+ bundled . find ( ( shard ) => shard . shardName === "agentic-control-plane-startup-health-runtime" )
137+ ?. env ,
138+ ) . toEqual ( { OPENCLAW_VITEST_NO_OUTPUT_TIMEOUT_MS : "60000" } ) ;
135139 expect (
136140 bundled . find ( ( shard ) => shard . shardName === "agentic-control-plane-startup-core" ) ?. runner ,
137141 ) . toBe ( DEFAULT_NODE_TEST_RUNNER ) ;
@@ -194,6 +198,11 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => {
194198 ( group ) => group . shard_name === "agentic-control-plane-startup-core" ,
195199 ) ?. runner ,
196200 ) . toBe ( DEFAULT_NODE_TEST_RUNNER ) ;
201+ expect (
202+ compact
203+ . flatMap ( ( shard ) => shard . groups )
204+ . find ( ( group ) => group . shard_name === "agentic-control-plane-startup-health-runtime" ) ?. env ,
205+ ) . toEqual ( { OPENCLAW_VITEST_NO_OUTPUT_TIMEOUT_MS : "60000" } ) ;
197206 expect (
198207 compact
199208 . filter ( ( shard ) => shard . groups . some ( ( group ) => ! group . includePatterns ) )
@@ -666,6 +675,9 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => {
666675 controlPlaneShards . map ( ( shard ) => ( {
667676 checkName : `checks-node-${ shard . shardName } ` ,
668677 configs : [ "test/vitest/vitest.gateway-server.config.ts" ] ,
678+ ...( shard . shardName === "agentic-control-plane-startup-health-runtime"
679+ ? { env : { OPENCLAW_VITEST_NO_OUTPUT_TIMEOUT_MS : "60000" } }
680+ : { } ) ,
669681 includePatterns : shard . includePatterns ,
670682 requiresDist : false ,
671683 runner :
0 commit comments