(title: string)
| 48 | } |
| 49 | |
| 50 | function header(title: string) { |
| 51 | console.log(''); |
| 52 | console.log('─'.repeat(70)); |
| 53 | console.log(title); |
| 54 | console.log('─'.repeat(70)); |
| 55 | } |
| 56 | |
| 57 | async function inspectRedis(projects: string[]): Promise<{ |
| 58 | total: number; |
no test coverage detected