module search paths have changed

This commit is contained in:
Cheng Zhao 2016-09-08 15:50:51 +09:00
Родитель 1de2b77ee4
Коммит f8bdc7437d
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -94,7 +94,8 @@ describe('Module._nodeModulePaths', function () {
it('includes paths outside of the resources path', function () {
let modulePath = path.resolve('/foo')
assert.deepEqual(Module._nodeModulePaths(modulePath), [
path.join(modulePath, 'node_modules')
path.join(modulePath, 'node_modules'),
path.resolve('/node_modules')
])
})
})