(id: string, isBundled = false)
| 5 | import type { LocalAgentInfo } from '../../utils/local-agent-registry' |
| 6 | |
| 7 | const makeAgent = (id: string, isBundled = false): LocalAgentInfo => ({ |
| 8 | id, |
| 9 | displayName: id, |
| 10 | filePath: `/agents/${id}.ts`, |
| 11 | isBundled, |
| 12 | }) |
| 13 | |
| 14 | describe('getAllPublishAgentIds', () => { |
| 15 | test('ignores bundled agents even if selected', () => { |
no outgoing calls
no test coverage detected