mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-06 23:17:22 +00:00
push all website files
This commit is contained in:
26
website/node_modules/npm/lib/install-ci-test.js
generated
vendored
Normal file
26
website/node_modules/npm/lib/install-ci-test.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict'
|
||||
|
||||
// npm install-ci-test
|
||||
// Runs `npm ci` and then runs `npm test`
|
||||
|
||||
module.exports = installTest
|
||||
var ci = require('./ci.js')
|
||||
var test = require('./test.js')
|
||||
var usage = require('./utils/usage')
|
||||
|
||||
installTest.usage = usage(
|
||||
'install-ci-test',
|
||||
'\nnpm install-ci-test [args]' +
|
||||
'\nSame args as `npm ci`'
|
||||
)
|
||||
|
||||
installTest.completion = ci.completion
|
||||
|
||||
function installTest (args, cb) {
|
||||
ci(args, function (er) {
|
||||
if (er) {
|
||||
return cb(er)
|
||||
}
|
||||
test([], cb)
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user