Member Junction
    Preparing search index...

    Parameters for running a test suite

    interface RunTestSuiteParams {
        environment?: string;
        onProgress?: (progress: TestExecutionProgress) => void;
        parallel?: boolean;
        selectedTestIds?: string[];
        sequenceEnd?: number;
        sequenceStart?: number;
        suiteId: string;
        tags?: string[];
        variables?: Record<string, unknown>;
        verbose?: boolean;
    }
    Index

    Properties

    environment?: string
    onProgress?: (progress: TestExecutionProgress) => void
    parallel?: boolean
    selectedTestIds?: string[]

    Run only specific tests by their IDs. If provided, only tests with matching IDs will be executed.

    sequenceEnd?: number

    Stop execution at this sequence number (inclusive). Tests with sequence numbers greater than this value will be skipped.

    sequenceStart?: number

    Start execution from this sequence number (inclusive). Tests with sequence numbers less than this value will be skipped.

    suiteId: string
    tags?: string[]
    variables?: Record<string, unknown>

    Variable values to apply to all tests in this suite. Key is the variable name, value is the resolved value.

    verbose?: boolean