(root, filePath, content)
| 13 | } |
| 14 | |
| 15 | function write(root, filePath, content) { |
| 16 | const fullPath = join(root, filePath); |
| 17 | mkdirSync(dirname(fullPath), { recursive: true }); |
| 18 | writeFileSync(fullPath, content); |
| 19 | } |
| 20 | |
| 21 | function run(root) { |
| 22 | return spawnSync(process.execPath, [scriptPath, "--root", root], { |
no outgoing calls
no test coverage detected