mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
761 B
24 lines
761 B
var readInstalled = require('../read-installed.js')
|
|
var test = require('tap').test
|
|
var path = require('path');
|
|
|
|
function allValid(t, map) {
|
|
var deps = Object.keys(map.dependencies || {})
|
|
deps.forEach(function (dep) {
|
|
t.notOk(map.dependencies[dep].invalid, 'dependency ' + dep + ' of ' + map.name + ' is not invalid')
|
|
t.notOk(typeof map.dependencies[dep] === 'string', 'dependency ' + dep + ' of ' + map.name + ' is not missing')
|
|
})
|
|
deps.forEach(function (dep) {
|
|
allValid(t, map.dependencies[dep])
|
|
})
|
|
}
|
|
|
|
test('grandparent can satisfy peer dependencies', function(t) {
|
|
readInstalled(
|
|
path.join(__dirname, 'fixtures/grandparent-peer'),
|
|
{ log: console.error },
|
|
function(err, map) {
|
|
allValid(t, map)
|
|
t.end()
|
|
})
|
|
})
|
|
|