Skip to content

Commit c8bbd83

Browse files
Linkgoronjasnell
authored andcommitted
test: add undefined fatalException exit code test
Add a test that checks the exit code when _fatalException is undefined PR-URL: #38119 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 6bbe285 commit c8bbd83

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/fixtures/process-exit-code-cases.js

+9
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,15 @@ function getTestCases(isWorker = false) {
122122
result: isWorker ? 1 : 7,
123123
error: /^Error: ok$/,
124124
});
125+
126+
function exitWithUndefinedFatalException() {
127+
process._fatalException = undefined;
128+
throw new Error('ok');
129+
}
130+
cases.push({
131+
func: exitWithUndefinedFatalException,
132+
result: 6,
133+
});
125134
return cases;
126135
}
127136
exports.getTestCases = getTestCases;

0 commit comments

Comments
 (0)