You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/integration/suite.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -989,7 +989,7 @@ export function createIntegrationTestsSuite(
989
989
990
990
awaitclient.close();
991
991
});
992
-
it.runIf(options.transport==='streamable-http')('should swap call-actor for add-actor when client supports dynamic tools for default tools',async()=>{
992
+
it.runIf(options.transport==='streamable-http')(`should swap call-actor for add-actor when client supports dynamic tools for default tools`,async()=>{
993
993
client=awaitcreateClientFn({clientName: 'Visual Studio Code'});
994
994
constnames=getToolNames(awaitclient.listTools());
995
995
@@ -999,7 +999,7 @@ export function createIntegrationTestsSuite(
999
999
1000
1000
awaitclient.close();
1001
1001
});
1002
-
it.runIf(options.transport==='streamable-http')('should NOT swap call-actor for add-actor when client supports dynamic tools when using the call-actor explicitly',async()=>{
1002
+
it.runIf(options.transport==='streamable-http')(`should NOT swap call-actor for add-actor when client supports dynamic tools when using the call-actor explicitly`,async()=>{
1003
1003
client=awaitcreateClientFn({clientName: 'Visual Studio Code',tools: ['call-actor']});
0 commit comments