(res, path)
| 10 | .replace(normalizePath(path), '{PATH}') |
| 11 | |
| 12 | const clean = (res, path) => { |
| 13 | const cleaned = new Map() |
| 14 | for (const [key, value] of res.entries()) { |
| 15 | cleaned.set(key, cleanOutput(value, path)) |
| 16 | } |
| 17 | return cleaned |
| 18 | } |
| 19 | |
| 20 | const path = t.testdir({ |
| 21 | packages: { |
no test coverage detected