(args)
| 21 | const root = git(['rev-parse', '--show-toplevel']).trim(); |
| 22 | |
| 23 | function changedFiles(args) { |
| 24 | const out = git(args); |
| 25 | return out.split('\n').map(line => line.trim()).filter(Boolean); |
| 26 | } |
| 27 | |
| 28 | const files = new Set([ |
| 29 | ...changedFiles(['diff', '--name-only', '--', ...paths]), |
no test coverage detected