Interface CoverageSummary

Istanbul-compatible coverage summary

interface CoverageSummary {
    branches: Totals;
    data: CoverageSummaryData;
    functions: Totals;
    lines: Totals;
    statements: Totals;
    isEmpty(): boolean;
    merge(otherSummary: CoverageSummary): CoverageSummary;
    toJSON(): CoverageSummaryData;
}

Properties

branches: Totals
functions: Totals
lines: Totals
statements: Totals

Methods