We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c8a452 commit 29607a1Copy full SHA for 29607a1
test/common/index.js
@@ -603,7 +603,8 @@ function printSkipMessage(msg) {
603
604
function skip(msg) {
605
printSkipMessage(msg);
606
- process.exit(0);
+ // In known_issues test, skipping should produce a non-zero exit code.
607
+ process.exit(require.main?.filename.startsWith(path.resolve(__dirname, '../known_issues/')) ? 1 : 0);
608
}
609
610
// Returns true if the exit code "exitCode" and/or signal name "signal"
0 commit comments