c8js
    Preparing search index...

    Interface LowCoverageError

    Error thrown when code coverage is under the specified thresholds.

    interface LowCoverageError {
        fails: Fail[];
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy

    • Error
      • LowCoverageError
    Index

    Properties

    fails: Fail[]

    A list of shortfalls in code coverage.

    message: string
    name: string
    stack?: string