Function
makeBaseOpts
(overrides: Partial<Parameters<typeof runInit>[0]> = {})
Source from the content-addressed store, hash-verified
| 140 | const CWD = '/test-project'; |
| 141 | |
| 142 | function makeBaseOpts(overrides: Partial<Parameters<typeof runInit>[0]> = {}) { |
| 143 | return { |
| 144 | profile: 'default', |
| 145 | output: 'text' as const, |
| 146 | debug: false, |
| 147 | dryRun: false, |
| 148 | fromEnv: false, |
| 149 | agent: 'claude' as AgentTarget, |
| 150 | noAgent: false, |
| 151 | force: false, |
| 152 | yes: false, |
| 153 | ...overrides, |
| 154 | }; |
| 155 | } |
| 156 | |
| 157 | // --------------------------------------------------------------------------- |
| 158 | // Setup / teardown |
Tested by
no test coverage detected