(sandboxDir, config)
| 42 | } |
| 43 | |
| 44 | function writeConfig(sandboxDir, config) { |
| 45 | fs.writeFileSync( |
| 46 | path.join(sandboxDir, '.claude', 'harness.json'), |
| 47 | JSON.stringify(config, null, 2) |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | function writeFile(sandboxDir, relPath, content) { |
| 52 | const full = path.join(sandboxDir, relPath); |
no outgoing calls
no test coverage detected