| 12345678910111213141516 | /* eslint-disable standard/no-callback-literal */module.exports = testconst testCmd = require('./utils/lifecycle-cmd.js')('test')test.usage = testCmd.usagefunction test (args, cb) {  testCmd(args, function (er) {    if (!er) return cb()    if (er.code === 'ELIFECYCLE') {      return cb('Test failed.  See above for more details.')    }    return cb(er)  })}
 |