(frameworks: string[])
| 13 | * servers if running |
| 14 | */ |
| 15 | export async function killAll(frameworks: string[]) { |
| 16 | const ports = new Set(await Promise.all(frameworks.map(getPort))); |
| 17 | return Promise.all(Array.from(ports).map(killProcess)); |
| 18 | } |
no outgoing calls
no test coverage detected