Generate a wire test suite

Set generateWireTests: true and generation emits an automated test suite alongside your CLI: one case per endpoint example, plus a harness that stands up an in-process mock server, drives the compiled binary against it, and asserts the CLI issued the expected request and rendered the mocked response. The suite runs under a plain cargo test — no Docker and no network — and the generated CI runs it on every build.

generators.yml
1config:
2 generateWireTests: true
Read the docs