()
| 124 | * once per call site. |
| 125 | */ |
| 126 | export function listIntegrations(): readonly IntegrationDescriptor[] { |
| 127 | if (cachedList) return cachedList |
| 128 | const { byName } = getIntegrationMatcher() |
| 129 | cachedList = [...byName.values()].sort((a, b) => a.name.localeCompare(b.name)) |
| 130 | return cachedList |
| 131 | } |
no test coverage detected