sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
27 lines (26 loc) • 865 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class OrgTestApex extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
protected configInfo: any;
protected testRunOutcome: string;
protected testRunOutputString: string;
protected statusMessage: string;
protected coverageTarget: number;
protected coverageValue: number;
protected failingTestClasses: any[];
private notifSeverity;
private notifText;
private notifAttachments;
private notifAttachedFiles;
private orgMarkdown;
private notifButtons;
run(): Promise<AnyJson>;
private runApexTests;
private processApexTestsFailure;
private checkOrgWideCoverage;
private checkTestRunCoverage;
}