0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-internal-modules.js
Christy Leung c00f647963 test: refactor test-internal-modules
* 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>
2016-12-23 22:48:48 -08:00

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
);