@@ -125,16 +125,16 @@ describe("checkCLI via collectDoctorReport", () => {
125125 it ( "quick-exit with code 0 returns installed: true with trimmed version" , async ( ) => {
126126 const reportPromise = collectDoctorReport ( ) ;
127127
128- // Let the Promise constructors run so spawn() is called for all 4 CLIs
128+ // Let the Promise constructors run so spawn() is called for all CLIs
129129 await vi . advanceTimersByTimeAsync ( 0 ) ;
130- expect ( spawnState . lastProcs ) . toHaveLength ( 5 ) ;
130+ expect ( spawnState . lastProcs ) . toHaveLength ( 6 ) ;
131131
132132 settleProcs ( 0 , "1.2.3\n" ) ;
133133 await vi . advanceTimersByTimeAsync ( 0 ) ;
134134
135135 const report = await reportPromise ;
136136
137- expect ( report . clis ) . toHaveLength ( 5 ) ;
137+ expect ( report . clis ) . toHaveLength ( 6 ) ;
138138 for ( const cli of report . clis ) {
139139 expect ( cli . installed ) . toBe ( true ) ;
140140 expect ( cli . version ) . toBe ( "1.2.3" ) ;
@@ -145,7 +145,7 @@ describe("checkCLI via collectDoctorReport", () => {
145145 const reportPromise = collectDoctorReport ( ) ;
146146
147147 await vi . advanceTimersByTimeAsync ( 0 ) ;
148- expect ( spawnState . lastProcs ) . toHaveLength ( 5 ) ;
148+ expect ( spawnState . lastProcs ) . toHaveLength ( 6 ) ;
149149
150150 settleProcs ( 1 ) ;
151151 await vi . advanceTimersByTimeAsync ( 0 ) ;
@@ -161,7 +161,7 @@ describe("checkCLI via collectDoctorReport", () => {
161161 const reportPromise = collectDoctorReport ( ) ;
162162
163163 await vi . advanceTimersByTimeAsync ( 0 ) ;
164- expect ( spawnState . lastProcs ) . toHaveLength ( 5 ) ;
164+ expect ( spawnState . lastProcs ) . toHaveLength ( 6 ) ;
165165
166166 errorProcs ( ) ;
167167 await vi . advanceTimersByTimeAsync ( 0 ) ;
@@ -178,7 +178,7 @@ describe("checkCLI via collectDoctorReport", () => {
178178 const reportPromise = collectDoctorReport ( ) ;
179179
180180 await vi . advanceTimersByTimeAsync ( 0 ) ;
181- expect ( spawnState . lastProcs ) . toHaveLength ( 5 ) ;
181+ expect ( spawnState . lastProcs ) . toHaveLength ( 6 ) ;
182182
183183 // Advance past the 1500ms probe timeout + 200ms SIGKILL grace
184184 await vi . advanceTimersByTimeAsync ( 1700 ) ;
0 commit comments