🤖
730 in / 1705 out / 2435 total tokens
CLI 모듈 핵심 로직을 전 경로 테스트로 보완했습니다. formatter.js는 100%, runner.js는 81% 커버리지를 달성하여 전체 커버리지가 92.67%로 증가했습니다. 총 29개의 새로운 테스트 케이스를 통해 배포 준비를 마쳤습니다.
function captureLog(fn) {
const logs = [];
const orig = console.log;
console.log = (...a) => logs.push(a.map(String).join(' '));
try { fn(); } finally { console.log = orig; }
return logs.join('\n');
}