xref: /third_party/node/test/parallel/test-internal-process-binding.js (revision 1cb0ef41)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
1'use strict';
2
3require('../common');
4const assert = require('assert');
5
6assert.strictEqual(undefined, process._internalBinding);
7assert.strictEqual(undefined, process.internalBinding);
8assert.throws(() => {
9  process.binding('module_wrap');
10}, /No such module/);
11

Indexes created Thu Nov 07 10:32:03 CST 2024