MINI MINI MANI MO
const LifecycleCmd = require('./utils/lifecycle-cmd.js')
// This ends up calling run-script(['test', ...args])
class Test extends LifecycleCmd {
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get description () {
return 'Test a package'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get name () {
return 'test'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get params () {
return [
'ignore-scripts',
'script-shell',
]
}
}
module.exports = Test
OHA YOOOO