You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/integration/run-command.test.ts
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,9 @@ describe("runCommand", () => {
88
88
89
89
conststderr=result.content[1];
90
90
// Verify error message contains the command name
91
-
expect(stderr.text).toEqual(expect.stringContaining("/bin/sh: nonexistentcommand: command not found\n")||expect.stringContaining("/bin/sh: 1: nonexistentcommand: not found"));
91
+
expect(stderr.text).toEqual(
92
+
expect.stringContaining("/bin/sh: nonexistentcommand: command not found\n")
93
+
||expect.stringContaining("/bin/sh: 1: nonexistentcommand: not found"));
0 commit comments