(...args: string[])
| 7 | const MCP_INSPECTOR_COMMAND_NAME = 'mcp-inspector-cli'; |
| 8 | |
| 9 | async function runInspector(...args: string[]): Promise<ProcessOutput> { |
| 10 | return exec(MCP_INSPECTOR_COMMAND_NAME, '--cli', 'npx', '--no', '@angular/cli', 'mcp', ...args); |
| 11 | } |
| 12 | |
| 13 | export default async function () { |
| 14 | await silentNpm( |
no test coverage detected