'use strict';
const Command = require('../models/command');
const SilentError = require('silent-error');
const chalk = require('chalk');
module.exports = Command.extend({
skipHelp: true,
unknown: true,
printBasicHelp() {
return chalk.red(`No help entry for '${this.name}'`);
},
validateAndRun() {
throw new SilentError(`The specified command ${this.name} is invalid. For available options, see \`ember help\`.`);
},
});
# |
Change |
User |
Description |
Committed |
|
#1
|
23539 |
jenbottom |
Adding the basic code for ember test appk, created with 'ember new' command |
|
|