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.
21 lines
489 B
21 lines
489 B
'use strict'
|
|
var test = require('tap').test
|
|
var requireInject = require('require-inject')
|
|
var npm = require('../../lib/npm.js')
|
|
|
|
test('setup', function (t) {
|
|
npm.load({progress: false}, t.end)
|
|
})
|
|
|
|
test('outdated', function (t) {
|
|
var rptError = new Error('read-package-tree')
|
|
var outdated = requireInject('../../lib/outdated.js', {
|
|
'read-package-tree': function (dir, cb) {
|
|
cb(rptError)
|
|
}
|
|
})
|
|
outdated([], function (err) {
|
|
t.is(err, rptError)
|
|
t.end()
|
|
})
|
|
})
|