(root, filePath, content)
| 11 | } = require("./lib"); |
| 12 | |
| 13 | function writeFile(root, filePath, content) { |
| 14 | const target = path.join(root, filePath); |
| 15 | fs.mkdirSync(path.dirname(target), { recursive: true }); |
| 16 | fs.writeFileSync(target, content); |
| 17 | } |
| 18 | |
| 19 | function createFixture() { |
| 20 | const root = fs.mkdtempSync(path.join(os.tmpdir(), "linea-agent-docs-")); |
no outgoing calls
no test coverage detected