RemoveTestCommand constructor

RemoveTestCommand()

Implementation

RemoveTestCommand() {
  argParser.addOption(
    'apps-name',
    abbr: 'a',
    help: 'Test with spesific apps (Optional)',
  );
  argParser.addOption(
    'feature',
    abbr: 'f',
    help: 'Test with spesific feature (optional)',
  );
  argParser.addOption(
    'page',
    abbr: 'p',
    help: 'Test with spesific page (optional)',
  );
}