mirror of
https://github.com/postmanlabs/openapi-to-postman.git
synced 2022-11-29 22:05:00 +03:00
Fixed wrongly defined maxLength option for schemaFaker
This commit is contained in:
@@ -99,8 +99,7 @@ const async = require('async'),
|
||||
schemaFaker.option({
|
||||
requiredOnly: false,
|
||||
optionalsProbability: 1.0, // always add optional fields
|
||||
minLength: 4, // for faked strings
|
||||
maxLength: 4,
|
||||
maxLength: 256,
|
||||
minItems: 1, // for arrays
|
||||
maxItems: 20, // limit on maximum number of items faked for (type: arrray)
|
||||
useDefaultValue: true,
|
||||
|
||||
Reference in New Issue
Block a user