mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c00f647963
* var -> const * add RegExp to assert.throws() to check error message PR-URL: https://github.com/nodejs/node/pull/10016 Reviewed-By: James M Snell <jasnell@gmail.com>
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
|
|
);
|