@archastro/sdk
    Preparing search index...

    Variable scriptTestCaseSchemaConst

    scriptTestCaseSchema: ZodObject<
        {
            assertions: ZodOptional<
                ZodArray<
                    ZodObject<
                        {
                            actual: ZodOptional<ZodType<{} | null, ZodTypeDef, {} | null>>;
                            describe: ZodOptional<ZodArray<ZodString, "many">>;
                            expected: ZodOptional<ZodType<{} | null, ZodTypeDef, {} | null>>;
                            it: ZodOptional<ZodString>;
                            kind: ZodOptional<ZodString>;
                            line: ZodOptional<ZodNumber>;
                            matcher: ZodOptional<ZodString>;
                            pass: ZodBoolean;
                        },
                        "strip",
                        ZodTypeAny,
                        {
                            actual?: {}
                            | null;
                            describe?: string[];
                            expected?: {} | null;
                            it?: string;
                            kind?: string;
                            line?: number;
                            matcher?: string;
                            pass: boolean;
                        },
                        {
                            actual?: {}
                            | null;
                            describe?: string[];
                            expected?: {} | null;
                            it?: string;
                            kind?: string;
                            line?: number;
                            matcher?: string;
                            pass: boolean;
                        },
                    >,
                    "many",
                >,
            >;
            describe: ZodOptional<ZodArray<ZodString, "many">>;
            error: ZodOptional<ZodString>;
            name: ZodString;
            pass: ZodBoolean;
        },
        "strip",
        ZodTypeAny,
        {
            assertions?: {
                actual?: {}
                | null;
                describe?: string[];
                expected?: {} | null;
                it?: string;
                kind?: string;
                line?: number;
                matcher?: string;
                pass: boolean;
            }[];
            describe?: string[];
            error?: string;
            name: string;
            pass: boolean;
        },
        {
            assertions?: {
                actual?: {}
                | null;
                describe?: string[];
                expected?: {} | null;
                it?: string;
                kind?: string;
                line?: number;
                matcher?: string;
                pass: boolean;
            }[];
            describe?: string[];
            error?: string;
            name: string;
            pass: boolean;
        },
    > = ...

    Runtime validator for ScriptTestCase.