mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 16:39:33 +00:00

Contains the following three npm releases: https://github.com/npm/npm/releases/tag/v3.8.7 https://github.com/npm/npm/releases/tag/v3.8.8 https://github.com/npm/npm/releases/tag/v3.8.9 PR-URL: https://github.com/nodejs/node/pull/6664 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
27 lines
507 B
JavaScript
27 lines
507 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')
|
|
var usage = require('./utils/usage')
|
|
|
|
installTest.usage = usage(
|
|
'install-test',
|
|
'\nnpm install-test [args]' +
|
|
'\nSame args as `npm install`'
|
|
)
|
|
|
|
installTest.completion = install.completion
|
|
|
|
function installTest (args, cb) {
|
|
install(args, function (er) {
|
|
if (er) {
|
|
return cb(er)
|
|
}
|
|
test([], cb)
|
|
})
|
|
}
|