forked from LeenkxTeam/Kmake
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const someBindingPath = './test/addons/hello-world/build/Release/binding.node';
|
|
|
|
assert.throws(() => {
|
|
process.dlopen({ exports: undefined }, someBindingPath);
|
|
}, Error);
|