smart-energy-monitor/software/flow/node_modules/npm/lib/commands/test.js

14 lines
295 B
JavaScript
Raw Normal View History

2023-02-23 15:38:30 +01:00
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