summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-binding-internalbinding-whitelist.js
blob: bfb265a2994952600f66e75a6c8e83e1ae8010a7 (plain)
1
2
3
4
5
6
7
8
9
10
// Flags: --no-warnings
'use strict';

require('../common');
const assert = require('assert');

// Assert that whitelisted internalBinding modules are accessible via
// process.binding().
assert(process.binding('uv'));
assert(process.binding('http_parser'));