UnknownSec Bypass
403
:
/
home
/
ubuntu
/
.nvm
/
versions
/
node
/
v16.13.1
/
lib
/
node_modules
/
npm
/
lib
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
install-test.js
// npm install-test // Runs `npm install` and then runs `npm test` const Install = require('./install.js') class InstallTest extends Install { static get description () { return 'Install package(s) and run tests' } /* istanbul ignore next - see test/lib/load-all-commands.js */ static get name () { return 'install-test' } exec (args, cb) { this.npm.commands.install(args, (er) => { if (er) return cb(er) this.npm.commands.test([], cb) }) } } module.exports = InstallTest
Copyright © 2025 - UnknownSec