Metreeca Keep
    Preparing search index...

    Sub-suite and test selection for a conformance run.

    Pairs an target and ignore list of StoreTestPatterns, matched as substrings against test paths to narrow which sub-suites and tests execute. Mixed into StoreTestOptions; with both omitted the full suite runs.

    type StoreTestScope = {
        target?: ReadonlyArray<StoreTestPatterns>;
        ignore?: ReadonlyArray<StoreTestPatterns>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    target?: ReadonlyArray<StoreTestPatterns>

    Execute only the sub-suites or tests whose path contains any of the given patterns.

    Patterns are matched as substrings against the full test path, formed by joining the well-known sub-suite tag (PersistUpdate, RetrieveTemplate, …) with the inner describe/it names using > as separator — e.g. PersistUpdate > update > contract > should return the resource id for an existing resource.

    Well-known sub-suite tags are listed inline as autocomplete hints; arbitrary patterns are accepted via the (string & {}) branch and may target individual describe blocks or test names. When omitted (or empty), every sub-suite and test runs unless ignored.

    ignore?: ReadonlyArray<StoreTestPatterns>

    Ignore sub-suites or tests whose path contains any of the given patterns.

    Same matching semantics as target. An ignore match always wins: a path matched by both target and ignore is skipped.