( workflowNames?: string[], ctx?: PredicateContext, )
| 481 | } |
| 482 | |
| 483 | export async function registerWorkflowsFromManifest( |
| 484 | workflowNames?: string[], |
| 485 | ctx?: PredicateContext, |
| 486 | ): Promise<void> { |
| 487 | await applyWorkflowSelectionFromManifest(workflowNames, ctx ?? defaultPredicateContext()); |
| 488 | } |
| 489 | |
| 490 | export function __resetToolRegistryForTests(): void { |
| 491 | for (const tool of registryState.tools.values()) { |
no test coverage detected