(stdout: string)
| 103 | |
| 104 | const counts = new Map<string, number>() |
| 105 | const tallyInto = (stdout: string) => { |
| 106 | for (const line of stdout.split('\n')) { |
| 107 | const f = line.trim() |
| 108 | if (f) counts.set(f, (counts.get(f) ?? 0) + 1) |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | if (userEmail) { |
| 113 | const { stdout } = await execFileNoThrowWithCwd( |
no test coverage detected