()
| 265 | }) |
| 266 | |
| 267 | const getApiKeyOrSkip = (): string | null => { |
| 268 | const apiKey = process.env[API_KEY_ENV_VAR] |
| 269 | if (!apiKey) { |
| 270 | console.warn( |
| 271 | `${API_KEY_ENV_VAR} is not set; skipping base2-free summary format test.`, |
| 272 | ) |
| 273 | return null |
| 274 | } |
| 275 | return apiKey |
| 276 | } |
| 277 | |
| 278 | it( |
| 279 | 'should use actual tool calls instead of imitating summary format', |
no outgoing calls
no test coverage detected