Variable scriptTestAssertionSchemaConst
scriptTestAssertionSchema: 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;
},
> = ...
Runtime validator for ScriptTestAssertion.