@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface ExecutionRecordNode

    One node in a recorded execution tree.

    interface ExecutionRecordNode {
        children: readonly ExecutionRecordNode[];
        endedAt: number | undefined;
        error: unknown;
        frame: ExecutionFrame;
        id: string;
        startedAt: number;
        status: "running" | "completed" | "failed";
    }
    Index

    Properties

    children: readonly ExecutionRecordNode[]

    Nested executions triggered from this node.

    endedAt: number | undefined

    Epoch timestamp when this node finished, or undefined while still running.

    error: unknown

    Error captured for failed nodes.

    Frame metadata for this recorded node.

    id: string

    Stable node id inside the recorded execution tree.

    startedAt: number

    Epoch timestamp when this node started.

    status: "running" | "completed" | "failed"

    Final execution status for this node.