Variable TestSchemaConst

TestSchema: ZodObject<{
    test: ZodType<((...args) => boolean), ZodTypeDef, ((...args) => boolean)>;
}, "strip", ZodTypeAny, {
    test: ((...args) => boolean);
}, {
    test: ((...args) => boolean);
}> = ...

Schema for validating test methods.

Type declaration

  • test: ZodType<((...args) => boolean), ZodTypeDef, ((...args) => boolean)>

    E2E test method.

    This method should return true if the test passes, and false if it fails. Check the method itself for more information.

    Param

    Any

Type declaration

  • test: ((...args) => boolean)
      • (...args): boolean
      • E2E test method.

        This method should return true if the test passes, and false if it fails. Check the method itself for more information.

        Parameters

        • Rest ...args: any[]

          Any

        Returns boolean

Type declaration

  • test: ((...args) => boolean)
      • (...args): boolean
      • E2E test method.

        This method should return true if the test passes, and false if it fails. Check the method itself for more information.

        Parameters

        • Rest ...args: any[]

          Any

        Returns boolean

Example

const isValid = TestSchema.parse({
test: () => true
});

Throws

If the provided test method is not a function or does not return a boolean.

Generated using TypeDoc