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.
38 lines
953 B
38 lines
953 B
'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()
|
|
})
|
|
})
|
|
|