Skip to content

Commit 05445fe

Browse files
committed
format
1 parent b292ba6 commit 05445fe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/run-command.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ describe("runCommand", () => {
8888

8989
const stderr = result.content[1];
9090
// 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"));
9294

9395
expect(stderr.name).toContain("STDERR");
9496
});

0 commit comments

Comments
 (0)