File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -321,6 +321,7 @@ describe("Cline", () => {
321321
322322 describe ( "getEnvironmentDetails" , ( ) => {
323323 describe ( "API conversation handling" , ( ) => {
324+ // Set timeout to 15 seconds for this specific test
324325 it ( "should clean conversation history before sending to API" , async ( ) => {
325326 // Cline.create will now use our mocked getEnvironmentDetails
326327 const [ cline , task ] = Cline . create ( {
@@ -387,7 +388,7 @@ describe("Cline", () => {
387388
388389 // Verify extra properties were removed
389390 expect ( Object . keys ( cleanedMessage ! ) ) . toEqual ( [ "role" , "content" ] )
390- } )
391+ } , 15000 )
391392
392393 it ( "should handle image blocks based on model capabilities" , async ( ) => {
393394 // Create two configurations - one with image support, one without
You can’t perform that action at this time.
0 commit comments