node/deps/npm/test/tap/uninstall-in-reverse.js
Rebecca Turner 41923c0c07 deps: upgrade npm to 3.3.6
PR-URL: https://github.com/nodejs/node/pull/3310
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-10-22 13:56:09 -04:00

39 lines
953 B
JavaScript

'use strict'
var test = require('tap').test
var requireInject = require('require-inject')
var log = require('npmlog')
/*
The remove actions need to happen in the opposite of their normally defined
order. That is, they need to go shallow -> deep.
*/
var removed = []
var npm = requireInject.installGlobally('../../lib/npm.js', {
'../../lib/install/action/remove.js': function (top, buildpath, pkg, log, next) {
removed.push(pkg.package.name)
next()
}
})
test('setup', function (t) {
npm.load(function () {
t.pass('npm loaded')
t.end()
})
})
test('abc', function (t) {
var Installer = require('../../lib/install.js').Installer
var inst = new Installer(__dirname, false, [])
inst.progress = {executeActions: log}
inst.todo = [
['remove', {package: {name: 'first'}}],
['remove', {package: {name: 'second'}}]
]
inst.executeActions(function () {
t.isDeeply(removed, ['second', 'first'])
t.end()
})
})