Member Junction
    Preparing search index...

    Parameters for running a test

    interface RunTestParams {
        environment?: string;
        onProgress?: (progress: TestExecutionProgress) => void;
        tags?: string[];
        testId: string;
        variables?: Record<string, unknown>;
        verbose?: boolean;
    }
    Index

    Properties

    environment?: string
    onProgress?: (progress: TestExecutionProgress) => void
    tags?: string[]
    testId: string
    variables?: Record<string, unknown>

    Variable values to use for this test run. Key is the variable name, value is the resolved value.

    verbose?: boolean