mirror of
https://github.com/nodejs/node.git
synced 2025-04-28 21:46:48 +00:00

PR-URL: https://github.com/nodejs/node/pull/22370 Refs: https://github.com/nodejs/node/issues/22160 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
'use strict';
|
|
// Flags: --expose-internals
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { internalBinding } = require('internal/test/binding');
|
|
|
|
assert.throws(
|
|
function() {
|
|
process.binding('test');
|
|
},
|
|
/No such module: test/
|
|
);
|
|
|
|
internalBinding('buffer');
|