mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
fb6e980e1e
PR-URL: https://github.com/nodejs/node/pull/17948 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
19 lines
537 B
JavaScript
19 lines
537 B
JavaScript
'use strict';
|
|
// Tests that os.userInfo correctly handles errors thrown by option property
|
|
// getters. See https://github.com/nodejs/node/issues/12370.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const execFile = require('child_process').execFile;
|
|
|
|
const script = `os.userInfo({
|
|
get encoding() {
|
|
throw new Error('xyz');
|
|
}
|
|
})`;
|
|
|
|
const node = process.execPath;
|
|
execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
|
|
assert(stderr.includes('Error: xyz'), 'userInfo crashes');
|
|
}));
|