(filePath, content)
| 25 | } |
| 26 | |
| 27 | function writeFile(filePath, content) { |
| 28 | fs.mkdirSync(path.dirname(filePath), { recursive: true }); |
| 29 | fs.writeFileSync(filePath, content, 'utf8'); |
| 30 | } |
| 31 | |
| 32 | function readinessReport({ |
| 33 | status = 'ready', |
no outgoing calls
no test coverage detected