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 5e05818 commit 8839f04Copy full SHA for 8839f04
tests/integration/exec-utils.test.ts
@@ -22,6 +22,7 @@ describe("execFileWithInput integration tests", () => {
22
await execFileWithInput("bash", "nonexistentcommand", {});
23
fail("Should have thrown an error");
24
} catch (error: any) {
25
+ console.log(error)
26
expect(error.stderr).toContain("bash: line 1: nonexistentcommand: command not found");
27
expect(error.message).toContain("Command failed: bash\nbash: line 1: nonexistentcommand: command not found\n");
28
}
0 commit comments