I made such a schema:
const schema = yup.object().shape({
seats: yup
.number()
.label('seats')
.required('pls enter'),
});
Additionally, I want to check that the number is positive or greater than 0. Is there any way I can add such a condition into the schema?
You can use the
test()
method and add a custom validation there:https://github.com/jquense/yup#mixedtestname-string-message-string--function-test-function-schema