Type alias ReporterDescription

ReporterDescription: ["blob"] | ["blob", {
    fileName?: string;
    outputDir?: string;
}] | ["dot"] | ["line"] | ["list"] | ["list", {
    printSteps?: boolean;
}] | ["github"] | ["junit"] | ["junit", {
    outputFile?: string;
    stripANSIControlSequences?: boolean;
}] | ["json"] | ["json", {
    outputFile?: string;
}] | ["html"] | ["html", {
    attachmentsBaseURL?: string;
    host?: string;
    open?: "always" | "never" | "on-failure";
    outputFolder?: string;
    port?: number;
}] | ["null"] | [string] | [string, any]

Generated using TypeDoc