Skip to content

Commit 225e70b

Browse files
committed
fix linux test suite
1 parent a0242dd commit 225e70b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/suite/suiteTestUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async function assertRunningUnix(
3434
processName: string,
3535
expectedCount: number,
3636
): Promise<void> {
37-
const command = `ps -x | grep -v grep | grep -c "${processName}"`;
37+
const command = `ps -x | grep -v grep | grep -v sh | grep -c "${processName}"`;
3838
let count = 0;
3939
try {
4040
const { stdout } = await exec(command);

0 commit comments

Comments
 (0)