Context
- joi version: 10.x
- environment (node, browser): node
What are you trying to achieve or the steps to reproduce ?
The properties set by using the .options({}) method should be included in the output of .describe()
Which result you had ?
Joi.any().options({ convert: false, abortEarly: false }).describe();
// { type: 'any' }
What did you expect ?
Joi.any().options({ convert: false, abortEarly: false }).describe();
// { type: 'any', options: { convert: false, abortEarly: false } }