()
| 21 | } |
| 22 | |
| 23 | function createConfig() { |
| 24 | return { |
| 25 | discordToken: undefined, |
| 26 | discordAllowChannelId: undefined, |
| 27 | telegramToken: undefined, |
| 28 | feishuAppId: undefined, |
| 29 | feishuAppSecret: undefined, |
| 30 | feishuVerificationToken: undefined, |
| 31 | feishuListenPort: 3030, |
| 32 | acpAgentCommand: 'node', |
| 33 | acpAgentArgs: [], |
| 34 | workspaceRoot: '/tmp/cli-gateway-test', |
| 35 | dbPath: ':memory:', |
| 36 | schedulerEnabled: false, |
| 37 | runtimeIdleTtlSeconds: 1, |
| 38 | maxBindingRuntimes: 1, |
| 39 | uiDefaultMode: 'verbose', |
| 40 | uiJsonMaxChars: 1000, |
| 41 | contextReplayEnabled: false, |
| 42 | contextReplayRuns: 0, |
| 43 | contextReplayMaxChars: 0, |
| 44 | }; |
| 45 | } |
| 46 | |
| 47 | function createSink() { |
| 48 | const texts: string[] = []; |
no outgoing calls
no test coverage detected