Skip to content

Commit

Permalink
Slightly rephrase note
Browse files Browse the repository at this point in the history
  • Loading branch information
paescuj committed Aug 15, 2022
1 parent 8b05ed6 commit 2a1197b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/concurrently.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ describe('exiting conditions', () => {
// Windows doesn't support sending signals like on POSIX platforms.
// In a console, processes can be interrupted with CTRL+C (SIGINT).
// However, there is no easy way to simulate this event.
// Calling 'process.kill' on Windows process means the process
// is getting killed forcefully and abruptly (similar to 'SIGKILL'),
// Calling 'process.kill' on a process in Windows means it
// is getting killed forcefully and abruptly (similar to SIGKILL),
// which then results in the exit code of '1'.
expect(exit.code).toBe(isWindows ? 1 : 0);
});
Expand Down

0 comments on commit 2a1197b

Please sign in to comment.