node/test/parallel/test-process-binding.js
Gibson Fahnestock db61c952de
test: use eslint to fix var->const/let
Manually fix issues that eslint --fix couldn't do automatically.

Backport-PR-URL: https://github.com/nodejs/node/pull/11775
PR-URL: https://github.com/nodejs/node/pull/10685
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2017-04-18 20:01:49 -04:00

18 lines
320 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
assert.throws(
function() {
process.binding('test');
},
/No such module: test/
);
assert.doesNotThrow(function() {
process.binding('buffer');
}, function(err) {
if (err instanceof Error) {
return true;
}
}, 'unexpected error');