summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/read-installed/test/grandparent-peer.js
blob: 8b51a0985a079875624e21c898c9b9b562f9d4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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()
    })
})