mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
76cb81b354
PR-URL: https://github.com/nodejs/node/pull/4958 Reviewed-By: Myles Borins <mborins@us.ibm.com> Reviewed-By: Kat Marchán <kzm@sykosomatic.org> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
24 lines
501 B
JavaScript
24 lines
501 B
JavaScript
'use strict'
|
|
|
|
// npm install-test
|
|
// Runs `npm install` and then runs `npm test`
|
|
|
|
module.exports = installTest
|
|
var install = require('./install.js')
|
|
var test = require('./test.js')
|
|
|
|
installTest.usage = '\nnpm install-test [args]' +
|
|
'\nSame args as `npm install`' +
|
|
'\n\nalias: npm it'
|
|
|
|
installTest.completion = install.completion
|
|
|
|
function installTest (args, cb) {
|
|
install(args, function (er) {
|
|
if (er) {
|
|
return cb(er)
|
|
}
|
|
test([], cb)
|
|
})
|
|
}
|