monad.ai
    Preparing search index...

    Type Alias NrpTestCatalogEntry

    Describes one documented test group in the NRP suite.

    The catalog is exported so TypeDoc can publish the test taxonomy alongside the runtime APIs. It is not used by Vitest at runtime.

    type NrpTestCatalogEntry = {
        category:
            | "parsing"
            | "index"
            | "selection"
            | "scoring"
            | "observability"
            | "learning";
        covers: string[];
        file: string;
        invariant: boolean;
    }
    Index

    Properties

    category:
        | "parsing"
        | "index"
        | "selection"
        | "scoring"
        | "observability"
        | "learning"

    Functional area covered by the file.

    covers: string[]

    Short description of the behavior under test.

    file: string

    Test file path relative to the package root.

    invariant: boolean

    Whether this test group protects a production invariant.