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