node/deps/npm/test/tap/uninstall-in-reverse.js
Kat Marchán 24f43903b4 deps: upgrade npm to 5.3.0
PR-URL: https://github.com/nodejs/node/pull/14235
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-07-17 08:49:02 -07:00

39 lines
949 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 unbuilt = []
var npm = requireInject.installGlobally('../../lib/npm.js', {
'../../lib/install/action/unbuild.js': function (staging, pkg, log, next) {
unbuilt.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 = [
['unbuild', {package: {name: 'first'}}],
['unbuild', {package: {name: 'second'}}]
]
inst.executeActions(function () {
t.isDeeply(unbuilt, ['second', 'first'])
t.end()
})
})