(filePath: string)
| 77 | } |
| 78 | |
| 79 | async function fileExists(filePath: string): Promise<boolean> { |
| 80 | try { |
| 81 | const stat = await fs.promises.stat(filePath); |
| 82 | return stat.isFile(); |
| 83 | } catch { |
| 84 | return false; |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | function getFrameworkDisplayName(framework: string): string { |
| 89 | switch (framework) { |
no test coverage detected