mirror of
https://github.com/asyouplz/SpeechNote.git
synced 2026-07-22 16:30:31 +00:00
* 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
11 lines
319 B
JavaScript
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}`);
|