mirror of https://github.com/nodejs/node.git
14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const path = require('path');
|
|
const assert = require('assert');
|
|
|
|
assert.throws(function() {
|
|
require('internal/freelist');
|
|
}, /^Error: Cannot find module 'internal\/freelist'$/);
|
|
|
|
assert.strictEqual(
|
|
require(path.join(common.fixturesDir, 'internal-modules')),
|
|
42
|
|
);
|