Variable scriptTestSuiteSchemaConst
scriptTestSuiteSchema: ZodObject<
{
describe: ZodArray<ZodString, "many">;
name: ZodString;
tests: ZodOptional<
ZodArray<
ZodObject<
{
assertions: ZodOptional<
ZodArray<
ZodObject<
{
actual: ZodOptional<(...)>;
describe: ZodOptional<(...)>;
expected: ZodOptional<(...)>;
it: ZodOptional<(...)>;
kind: ZodOptional<(...)>;
line: ZodOptional<(...)>;
matcher: ZodOptional<(...)>;
pass: ZodBoolean;
},
"strip",
ZodTypeAny,
{
actual?: (...)
| (...)
| (...);
describe?: (...) | (...);
expected?: (...) | (...) | (...);
it?: (...) | (...);
kind?: (...) | (...);
line?: (...) | (...);
matcher?: (...) | (...);
pass: boolean;
},
{
actual?: (...)
| (...)
| (...);
describe?: (...) | (...);
expected?: (...) | (...) | (...);
it?: (...) | (...);
kind?: (...) | (...);
line?: (...) | (...);
matcher?: (...) | (...);
pass: boolean;
},
>,
"many",
>,
>;
describe: ZodOptional<ZodArray<ZodString, "many">>;
error: ZodOptional<ZodString>;
name: ZodString;
pass: ZodBoolean;
},
"strip",
ZodTypeAny,
{
assertions?: {
actual?: {}
| null;
describe?: (...)[];
expected?: {} | null;
it?: string;
kind?: string;
line?: number;
matcher?: string;
pass: boolean;
}[];
describe?: string[];
error?: string;
name: string;
pass: boolean;
},
{
assertions?: {
actual?: {}
| null;
describe?: (...)[];
expected?: {} | null;
it?: string;
kind?: string;
line?: number;
matcher?: string;
pass: boolean;
}[];
describe?: string[];
error?: string;
name: string;
pass: boolean;
},
>,
"many",
>,
>;
},
"strip",
ZodTypeAny,
{
describe: string[];
name: string;
tests?: {
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;
}[];
},
{
describe: string[];
name: string;
tests?: {
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 ScriptTestSuite.