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.
 
 
 
 
 
 

76 lines
1.6 KiB

'use strict'
var path = require('path')
var test = require('tap').test
var Tacks = require('tacks')
var Dir = Tacks.Dir
var File = Tacks.File
var common = require('../common-tap.js')
var testdir = path.resolve(__dirname, path.basename(__filename, '.js'))
var fixture = new Tacks(Dir({
node_modules: Dir({
a: Dir({
'package.json': File({
name: 'a',
version: '1.0.0',
dependencies: {
b: '1.0.0'
}
}),
node_modules: Dir({
b: Dir({
'package.json': File({
name: 'b',
version: '1.0.0'
})
})
})
})
}),
'b-src': Dir({
'package.json': File({
name: 'b',
version: '1.0.0'
})
})
}))
function setup () {
cleanup()
fixture.create(testdir)
}
function cleanup () {
fixture.remove(testdir)
}
test('setup', function (t) {
setup()
t.end()
})
test('install-report', function (t) {
common.npm(['install', '--json', 'b-src'], {cwd: testdir}, function (err, code, stdout, stderr) {
if (err) throw err
t.is(code, 0, 'installed successfully')
t.is(stderr, '', 'no warnings')
try {
var report = JSON.parse(stdout)
t.pass('stdout was json')
} catch (ex) {
t.fail('stdout was json')
console.error(ex)
t.skip(2)
return t.end()
}
var depNames = Object.keys(report.dependencies)
t.is(depNames.length, 1, 'one dependency reported as installed')
t.ok(report.dependencies.b, 'that dependency was `b`')
t.end()
})
})
test('cleanup', function (t) {
cleanup()
t.end()
})