Member Junction
    Preparing search index...

    Flags for suite command

    interface SuiteFlags {
        checksModule?: string;
        delay?: number;
        failFast?: boolean;
        flakyCheck?: number;
        format?: OutputFormat;
        maxParallel?: number;
        name?: string;
        oraclesModule?: string;
        output?: string;
        parallel?: boolean;
        sequence?: string;
        var?: string[];
        verbose?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    checksModule?: string

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

    delay?: number

    Delay in milliseconds between test executions. Useful for avoiding rate limits (e.g., Auth0 brute-force protection).

    failFast?: boolean
    flakyCheck?: number

    Run each test N times to detect flakiness via score variance. Tests with score variance > 0.3 across iterations are flagged [FLAKY]. Recommended: 3 (statistical minimum), 5 (more reliable detection).

    format?: OutputFormat
    maxParallel?: number

    Maximum number of parallel workers (default 4).

    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
    parallel?: boolean
    sequence?: string
    var?: string[]

    Variable values to pass to all tests in the suite (format: name=value) Can be specified multiple times for multiple variables

    verbose?: boolean