@@ -120,7 +120,7 @@ describeIntegration("Background Bash Execution", () => {
120120 const startEvents = await sendMessageAndWait (
121121 env ,
122122 workspaceId ,
123- ' Use the bash tool with run_in_background=true to run: sleep 30' ,
123+ " Use the bash tool with run_in_background=true to run: sleep 30" ,
124124 HAIKU_MODEL ,
125125 BACKGROUND_TOOLS ,
126126 30000
@@ -144,7 +144,8 @@ describeIntegration("Background Bash Execution", () => {
144144 // Verify the process appears in the list
145145 const responseText = extractTextFromEvents ( listEvents ) ;
146146 expect (
147- responseText . includes ( processId ! ) || toolOutputContains ( listEvents , "bash_background_list" , processId ! )
147+ responseText . includes ( processId ! ) ||
148+ toolOutputContains ( listEvents , "bash_background_list" , processId ! )
148149 ) . toBe ( true ) ;
149150
150151 // Clean up: terminate the background process
@@ -196,7 +197,7 @@ describeIntegration("Background Bash Execution", () => {
196197 const startEvents = await sendMessageAndWait (
197198 env ,
198199 workspaceId ,
199- ' Use bash with run_in_background=true to run: sleep 300' ,
200+ " Use bash with run_in_background=true to run: sleep 300" ,
200201 HAIKU_MODEL ,
201202 BACKGROUND_TOOLS ,
202203 30000
@@ -236,8 +237,8 @@ describeIntegration("Background Bash Execution", () => {
236237 const listResponse = extractTextFromEvents ( listEvents ) ;
237238 expect (
238239 listResponse . toLowerCase ( ) . includes ( "killed" ) ||
239- listResponse . toLowerCase ( ) . includes ( "terminated" ) ||
240- toolOutputContains ( listEvents , "bash_background_list" , "killed" )
240+ listResponse . toLowerCase ( ) . includes ( "terminated" ) ||
241+ toolOutputContains ( listEvents , "bash_background_list" , "killed" )
241242 ) . toBe ( true ) ;
242243 } finally {
243244 await cleanup ( ) ;
@@ -313,8 +314,8 @@ describeIntegration("Background Bash Execution", () => {
313314 // The main assertion is that the process was tracked
314315 expect (
315316 hasExited ||
316- listResponse . includes ( processId ! ) ||
317- toolOutputContains ( listEvents , "bash_background_list" , processId ! )
317+ listResponse . includes ( processId ! ) ||
318+ toolOutputContains ( listEvents , "bash_background_list" , processId ! )
318319 ) . toBe ( true ) ;
319320 } finally {
320321 await cleanup ( ) ;
0 commit comments