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 c0df2e2 commit 2e2a099Copy full SHA for 2e2a099
tests/integration/exec-utils.test.ts
@@ -22,7 +22,7 @@ describe("execFileWithInput integration tests", () => {
22
await execFileWithInput("bash", "nonexistentcommand", {});
23
fail("Should have thrown an error");
24
} catch (error: any) {
25
- expect(error.stderr).toContain("nonexistentcommand");
+ expect(error.stderr).toContain("bash: line 1: nonexistentcommand: command not found");
26
expect(error.message).toBeTruthy();
27
}
28
});
0 commit comments