Member Junction
    Preparing search index...

    Flags for compare command

    interface CompareFlags {
        checksModule?: string;
        commit?: string[];
        diffOnly?: boolean;
        format?: OutputFormat;
        fromJson?: string[];
        latest?: boolean;
        oraclesModule?: string;
        output?: string;
        tag?: string;
        verbose?: boolean;
        version?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    checksModule?: string

    Ad-hoc integration-check module to preload (config testing.checkModules is the durable form).

    commit?: string[]
    diffOnly?: boolean
    format?: OutputFormat
    fromJson?: string[]

    Compare two results.json files directly (no DB needed). Takes two file paths.

    latest?: boolean

    Compare the two most recent completed suite runs

    oraclesModule?: string

    Path to a CommonJS or ESM module that exports custom IOracle classes or instances. Each exported oracle is registered on the engine before the test/suite runs — used by non-MJ adopters (Mode C) to plug their own oracle types without modifying TestingFramework.

    output?: string
    tag?: string

    Filter suite runs by a single tag. Matches against MJTestSuiteRunEntity.Tags, which is a JSON array string (e.g., ["staging-nightly","sonnet-4.6"]). Used to isolate runs from a specific source environment when an archive MJ holds multiple sources side-by-side. DB mode only — --from-json ignores it because results.json does not currently emit the Tags field.

    verbose?: boolean
    version?: string[]