Member Junction
    Preparing search index...

    Execution context details for test runs. Stored as JSON in the RunContextDetails field of TestRun and TestSuiteRun entities. Enables cross-server aggregation and detailed environment tracking.

    interface RunContextDetails {
        branch?: string;
        buildNumber?: string;
        ciProvider?: string;
        ipAddress?: string;
        locale?: string;
        nodeVersion?: string;
        osType?: string;
        osVersion?: string;
        pipelineId?: string;
        prNumber?: string;
        timezone?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional custom properties for extensibility

    Index

    Properties

    branch?: string

    Git branch name

    buildNumber?: string

    Build number or run number from CI/CD

    ciProvider?: string

    CI/CD provider name (e.g., "GitHub Actions", "Azure DevOps", "Jenkins")

    ipAddress?: string

    IP address of the machine running tests (useful for network debugging)

    locale?: string

    System locale (e.g., "en-US", "fr-FR")

    nodeVersion?: string

    Node.js version used to run the tests

    osType?: string

    Operating system type (e.g., "darwin", "linux", "win32")

    osVersion?: string

    Operating system version/release

    pipelineId?: string

    CI/CD pipeline or workflow ID

    prNumber?: string

    Pull request number (if applicable)

    timezone?: string

    Timezone identifier (e.g., "America/New_York", "UTC")