mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
60c71f35ee
PR-URL: https://github.com/nodejs/node/pull/41861 Fixes: https://github.com/nodejs/node/issues/41774 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
8 lines
279 B
JavaScript
8 lines
279 B
JavaScript
import '../common/index.mjs';
|
|
import assert from 'assert';
|
|
import process, { report } from 'process';
|
|
|
|
assert.strictEqual(Object.prototype.toString.call(process), '[object process]');
|
|
assert(Object.getOwnPropertyDescriptor(process, Symbol.toStringTag).writable);
|
|
assert(report);
|