(filePath, content)
| 24 | } |
| 25 | |
| 26 | function write(filePath, content) { |
| 27 | fs.mkdirSync(path.dirname(filePath), { recursive: true }); |
| 28 | fs.writeFileSync(filePath, content); |
| 29 | } |
| 30 | |
| 31 | function listen(port = 0) { |
| 32 | return new Promise((resolve) => { |
no outgoing calls
no test coverage detected