mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6059cbedbd
PR-URL: https://github.com/nodejs/node/pull/45027 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
21 lines
353 B
JavaScript
21 lines
353 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// This test ensures that console.log
|
|
// will not crash the process if there
|
|
// is not enough space on the V8 stack
|
|
|
|
const done = common.mustCall();
|
|
|
|
async function test() {
|
|
await test();
|
|
}
|
|
|
|
(async () => {
|
|
try {
|
|
await test();
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
})().then(done, done);
|