Const
Schema for validating test methods.
const isValid = TestSchema.parse({ test: () => true}); Copy
const isValid = TestSchema.parse({ test: () => true});
If the provided test method is not a function or does not return a boolean.
Schema for validating test methods.