bun format

This commit is contained in:
km-anthropic
2025-08-07 15:18:44 -07:00
parent b6238ad00e
commit e2bdca6133
3 changed files with 10 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ describe("shell-quote parseShellArgs", () => {
test("should filter out non-string results", () => {
// shell-quote can return objects for operators like | > < etc
const result = parseShellArgs("echo hello");
const filtered = result.filter(arg => typeof arg === "string");
const filtered = result.filter((arg) => typeof arg === "string");
expect(filtered).toEqual(["echo", "hello"]);
});
});
});