(filePath, content)
| 8 | const path = require('path'); |
| 9 | |
| 10 | function write(filePath, content) { |
| 11 | fs.mkdirSync(path.dirname(filePath), { recursive: true }); |
| 12 | fs.writeFileSync(filePath, content, 'utf8'); |
| 13 | } |
| 14 | |
| 15 | function withTempProject(run) { |
| 16 | const dir = fs.mkdtempSync(path.join(os.tmpdir(), 'citadel-operator-journey-')); |
no outgoing calls
no test coverage detected