@archastro/sdk
    Preparing search index...

    Interface ScriptTestOutputEntry

    One println/log entry interleaved with a ScriptTest run. After the test harvester filters out test-control entries (it, assertion, it_error), only println and log.<level> calls remain in the report's output field. Both shapes share text/values/line (line is auto-annotated by the evaluator post-call); level and timestamp are only present on log.* entries.

    interface ScriptTestOutputEntry {
        level?: string;
        line?: number;
        text: string;
        timestamp?: string;
        values?: unknown[];
    }
    Index

    Properties

    level?: string

    Log level (debug, info, warn, error) — present on log.* entries only

    line?: number

    Source line of the println/log call

    text: string

    Joined text representation of the args

    timestamp?: string

    UTC timestamp — present on log.* entries only

    values?: unknown[]

    Original args coerced to JSON-safe values — mixed scalars, maps, and lists since the call sites accept arbitrary expressions