Skip to content

Commit

Permalink
process: wait promise resolve before print result
Browse files Browse the repository at this point in the history
  • Loading branch information
H4ad committed Mar 20, 2024
1 parent f9755f6 commit dbcf465
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 9 deletions.
5 changes: 4 additions & 1 deletion lib/internal/process/execution.js
Expand Up @@ -119,7 +119,10 @@ function evalScript(name, body, breakFirstLine, print, shouldLoadESM = false) {
});
if (print) {
const { log } = require('internal/console/global');
log(result);

process.on('exit', async () => {
log(await result);
});
}

if (origModule !== undefined)
Expand Down
41 changes: 33 additions & 8 deletions test/parallel/test-cli-print-promise.mjs
Expand Up @@ -15,7 +15,7 @@ describe('--print with a promise', { concurrency: true }, () => {
code: 0,
signal: null,
stderr: '',
stdout: 'Promise { 42 }\n',
stdout: '42\n',
});
});

Expand All @@ -29,7 +29,7 @@ describe('--print with a promise', { concurrency: true }, () => {
code: 0,
signal: null,
stderr: '',
stdout: 'Promise { <pending> }\n',
stdout: '42\n',
});
});

Expand All @@ -43,7 +43,7 @@ describe('--print with a promise', { concurrency: true }, () => {
code: 0,
signal: null,
stderr: '',
stdout: 'Promise { <pending> }\n',
stdout: '',
});
});

Expand All @@ -57,11 +57,11 @@ describe('--print with a promise', { concurrency: true }, () => {
code: 0,
signal: null,
stderr: '',
stdout: 'Promise { <pending> }\n',
stdout: '',
});
});

it('should handle rejected promises', async () => {
it('should handle rejected promises with unhandled-rejections=none', async () => {
const result = await spawnPromisified(execPath, [
'--unhandled-rejections=none',
'--print',
Expand All @@ -72,11 +72,11 @@ describe('--print with a promise', { concurrency: true }, () => {
code: 0,
signal: null,
stderr: '',
stdout: 'Promise { <rejected> 1 }\n',
stdout: '',
});
});

it('should handle promises that reject after one tick', async () => {
it('should handle promises that reject after one tick with unhandled-rejections=none', async () => {
const result = await spawnPromisified(execPath, [
'--unhandled-rejections=none',
'--print',
Expand All @@ -87,7 +87,32 @@ describe('--print with a promise', { concurrency: true }, () => {
code: 0,
signal: null,
stderr: '',
stdout: 'Promise { <pending> }\n',
stdout: '',
});
});

it('should error with unhandled rejected promises', async () => {
const result = await spawnPromisified(execPath, [
'--print',
'Promise.reject(1)',
]);

assert.strictEqual(result.code, 1);
assert.strictEqual(result.signal, null);
assert.strictEqual(result.stdout, '');
assert.ok(result.stderr.includes('ERR_UNHANDLED_REJECTION'), 'Not found ERR_UNHANDLED_REJECTION');
});

it('should error when throw inside fn', async () => {
const result = await spawnPromisified(execPath, [
'--print',
'Promise.resolve().then(()=>{throw new Error(10)})',
]);

assert.strictEqual(result.code, 1);
assert.strictEqual(result.signal, null);
assert.strictEqual(result.stdout, '');
assert.ok(result.stderr.includes('throw new Error(10)'), `Found: ${result.stderr}`);
assert.ok(result.stderr.includes('Error: 10'), `Found: ${result.stderr}`);
});
});

0 comments on commit dbcf465

Please sign in to comment.