Files
stf-DeviceFarmer-1/lib/cli/doctor/index.js

12 lines
259 B
JavaScript

module.exports.command = 'doctor'
module.exports.describe = 'Diagnose potential issues with your installation.'
module.exports.builder = function(yargs) {
return yargs
}
module.exports.handler = function() {
return require('../../util/doctor').run()
}