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.
23 lines
501 B
23 lines
501 B
'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)
|
|
})
|
|
}
|
|
|