Kyle Fuller
Kyle Fuller
@albertjan we provide a CLI called Fury which can be found at https://github.com/apiaryio/api-elements.js/tree/master/packages/fury-cli#fury-cli. This uses the same parser as Dredd and should provide you with similiar results. You could use...
Perhaps the `--dry-run` option of Dredd would suffice ``` Options: --dry-run, -y Do not run any real HTTP transaction, only parse API description document and compile transactions. [default: null] ```
I think this is pretty much the same as https://github.com/apiaryio/dredd/issues/1719#issuecomment-648389628
Hi @alex, Thanks for the clear report. Looks like optimist is deprecated/unmaintained and the original creator of optimist suggests just using `minimist` directly or `yargs`. I think minimist is the...
The fix from Drafter should be in Dredd by now, is there any remaining problems? Perhaps this issue can be closed.
The x-nullable flag only adds `null` to the `type` of the JSON Schema. The problem here is when `enum` is present in JSON Schema, validators don't look at type since...
@andybarilla I've prepared a fix in https://github.com/apiaryio/api-elements.js/pull/59, I hope you don't mind that I've taken parts of your example Swagger 2 document to reproduce in our test fixtures.
It would seem that in OpenAPI 3, the exact opposite to my [prior comment](https://github.com/apiaryio/dredd/issues/507#issuecomment-391758803) on making `nullable` add null to enums,. https://github.com/OAI/OpenAPI-Specification/pull/2050 where the proposal from TSC members to clarify...
`stdout` is a socket, seems we would need to wait (async) for data. ``` > spawn('npm', ['--version']).stdout Socket { ... } > spawn('npm', ['--version']).stdout.toString() '[object Object]' > spawn('npm', ['--version']).stdout.on('data', buffer...
@opichals you may need to rebase this, or re-create it to fix the CI badges (we moved to GitHub Actions).