We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26cbf83 commit f354802Copy full SHA for f354802
libs/providers/langchain-anthropic/src/tools/tests/bash.test.ts
@@ -16,7 +16,10 @@ describe("Anthropic Bash Tool Unit Tests", () => {
16
});
17
18
it("creates a valid bash tool with execute function", async () => {
19
- const mockExecute = async (args: { command?: string; restart?: boolean }) => {
+ const mockExecute = async (args: {
20
+ command?: string;
21
+ restart?: boolean;
22
+ }) => {
23
if (args.restart) {
24
return "Session restarted";
25
}
@@ -90,4 +93,3 @@ describe("Anthropic Bash Tool Unit Tests", () => {
90
93
91
94
92
95
-
0 commit comments