Member Junction
    Preparing search index...

    Flags for run command

    interface RunFlags {
        all?: boolean;
        category?: string;
        checksModule?: string;
        difficulty?: string;
        dryRun?: boolean;
        environment?: string;
        format?: OutputFormat;
        name?: string;
        oraclesModule?: string;
        output?: string;
        suite?: string;
        tag?: string;
        var?: string[];
        verbose?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    all?: boolean
    category?: string
    checksModule?: string

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

    difficulty?: string
    dryRun?: boolean
    environment?: string
    format?: OutputFormat
    name?: string
    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
    suite?: string
    tag?: string
    var?: string[]

    Variable values to pass to the test (format: name=value) Can be specified multiple times for multiple variables

    verbose?: boolean