Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
13
Dependencies/NodeJS/node_modules/npm/lib/commands/test.js
generated
vendored
Normal file
13
Dependencies/NodeJS/node_modules/npm/lib/commands/test.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
const LifecycleCmd = require('../lifecycle-cmd.js')
|
||||
|
||||
// This ends up calling run-script(['test', ...args])
|
||||
class Test extends LifecycleCmd {
|
||||
static description = 'Test a package'
|
||||
static name = 'test'
|
||||
static params = [
|
||||
'ignore-scripts',
|
||||
'script-shell',
|
||||
]
|
||||
}
|
||||
|
||||
module.exports = Test
|
Reference in New Issue
Block a user