diff --git a/src/infra/node-shell.test.ts b/src/infra/node-shell.test.ts index 8a0dc72bde1..c0fbc2c476f 100644 --- a/src/infra/node-shell.test.ts +++ b/src/infra/node-shell.test.ts @@ -31,5 +31,6 @@ describe("buildNodeShellCommand", () => { expect(buildNodeShellCommand("echo hi", "linux")).toEqual(["/bin/sh", "-lc", "echo hi"]); expect(buildNodeShellCommand("echo hi")).toEqual(["/bin/sh", "-lc", "echo hi"]); expect(buildNodeShellCommand("echo hi", null)).toEqual(["/bin/sh", "-lc", "echo hi"]); + expect(buildNodeShellCommand("echo hi", " ")).toEqual(["/bin/sh", "-lc", "echo hi"]); }); });