mirror of https://github.com/nodejs/node.git
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
|
'use strict';
|
||
|
const common = require('../../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
assert.throws(
|
||
|
() => require(`./build/${common.buildType}/test_null_init`),
|
||
|
/Module has no declared entry point[.]/);
|