Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix test for exit code 1 on windows (#78)
- Loading branch information
1 parent
2892941
commit 4231a1076ab8f435f73b466c07a126eb6987de39
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -2,4 +2,4 @@ | ||
'use strict'; | ||
console.log('stdout'); | ||
console.error('stderr'); | ||
process.exit(2); | ||
process.exit(1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters