2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2016-12-01 10:01:11 -06:00
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
2011-02-21 15:46:34 +01:00
|
|
|
|
|
|
|
// A module with an error in it should throw
|
|
|
|
assert.throws(function() {
|
|
|
|
require(common.fixturesDir + '/throws_error');
|
2016-12-01 10:01:11 -06:00
|
|
|
}, /^Error: blah$/);
|
2011-02-21 15:46:34 +01:00
|
|
|
|
|
|
|
// Requiring the same module again should throw as well
|
|
|
|
assert.throws(function() {
|
|
|
|
require(common.fixturesDir + '/throws_error');
|
2016-12-01 10:01:11 -06:00
|
|
|
}, /^Error: blah$/);
|
2011-12-18 13:33:48 -08:00
|
|
|
|
|
|
|
// Requiring a module that does not exist should throw an
|
|
|
|
// error with its `code` set to MODULE_NOT_FOUND
|
2016-04-15 13:32:36 +02:00
|
|
|
assertModuleNotFound('/DOES_NOT_EXIST');
|
|
|
|
|
|
|
|
assertExists('/module-require/not-found/trailingSlash.js');
|
|
|
|
assertExists('/module-require/not-found/node_modules/module1/package.json');
|
|
|
|
assertModuleNotFound('/module-require/not-found/trailingSlash');
|
|
|
|
|
|
|
|
function assertModuleNotFound(path) {
|
|
|
|
assert.throws(function() {
|
|
|
|
require(common.fixturesDir + path);
|
|
|
|
}, function(e) {
|
|
|
|
assert.strictEqual(e.code, 'MODULE_NOT_FOUND');
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function assertExists(fixture) {
|
|
|
|
assert(common.fileExists(common.fixturesDir + fixture));
|
|
|
|
}
|