@archastro/sdk
    Preparing search index...

    Interface ScriptTestSuite

    One test.describe(...) group from a ScriptTest run. Suites are derived from the unique describe paths the harvester sees, so there's no synthetic "ungrouped" suite — it blocks emitted outside any describe show up in the top-level tests array on the parent report instead.

    interface ScriptTestSuite {
        describe: string[];
        name: string;
        tests?: ScriptTestCase[];
    }
    Index

    Properties

    Properties

    describe: string[]

    Outer-to-inner describe path identifying this suite

    name: string

    Human-readable suite name (describe path joined by >)

    tests?: ScriptTestCase[]

    Every test.it(...) case run inside this describe