Interface TestRunProfile

interface TestRunProfile {
    canConfigure: boolean;
    isDefault: boolean;
    kind: TestRunProfileKind;
    label: string;
    tag: string;
    configure(): void;
    run(name, included, excluded, preserveFocus): void;
}

Properties

canConfigure: boolean
isDefault: boolean
label: string
tag: string

Methods