(config: { dryRun?: boolean; output?: string }, body: unknown)
| 23 | } |
| 24 | |
| 25 | export function dryRun(config: { dryRun?: boolean; output?: string }, body: unknown): boolean { |
| 26 | if (!config.dryRun) return false; |
| 27 | console.log(formatOutput({ request: body }, detectOutputFormat(config.output))); |
| 28 | return true; |
| 29 | } |
no test coverage detected