(rootDir, args)
| 23 | } |
| 24 | |
| 25 | function runCli(rootDir, args) { |
| 26 | return childProcess.execFileSync(process.execPath, [ |
| 27 | path.join(__dirname, 'map-index.js'), |
| 28 | ...args, |
| 29 | ], { |
| 30 | cwd: rootDir, |
| 31 | encoding: 'utf8', |
| 32 | }); |
| 33 | } |
| 34 | |
| 35 | function main() { |
| 36 | const root = fs.mkdtempSync(path.join(os.tmpdir(), 'citadel-map-test-')); |