1const LifecycleCmd = require('../lifecycle-cmd.js')
2
3// This ends up calling run-script(['test', ...args])
4class Test extends LifecycleCmd {
5  static description = 'Test a package'
6  static name = 'test'
7  static params = [
8    'ignore-scripts',
9    'script-shell',
10  ]
11}
12
13module.exports = Test
14