asyouplz_SpeechNote/scripts/open-coverage.js
asyouplz fc3ac57026 Comprehensive Refactoring & Type Safety Fixes (#48)
* refactor: address PR #8004 review comments and fix lint errors

* fix: address CI failures and code review feedback

* Refactor: comprehensive fix for lint errors and type safety regressions

* chore: trigger CI and Claude Code Review workflows
2026-01-20 10:41:22 +09:00

11 lines
319 B
JavaScript

const fs = require('fs');
const path = require('path');
const reportPath = path.join(__dirname, '..', 'coverage', 'lcov-report', 'index.html');
if (!fs.existsSync(reportPath)) {
console.warn('Coverage report not found. Skipping open step.');
process.exit(0);
}
console.log(`Coverage report: ${reportPath}`);