{{!-- Coverage Dashboard HTML Template Variables: - projectName: プロジェクト名 - generatedAt: 生成日時 - total: 合計カバレッジ {lines, statements, functions, branches} - files: ファイル一覧 [{path, lines, statements, functions, branches}] Helpers: - coverageStatus(pct): 'high' | 'medium' | 'low' --}} Coverage Dashboard - {{projectName}}

Coverage Dashboard

{{projectName}} - {{files.length}} files analyzed

Lines

{{total.lines.pct}}%
{{total.lines.covered}} / {{total.lines.total}}

Statements

{{total.statements.pct}}%
{{total.statements.covered}} / {{total.statements.total}}

Functions

{{total.functions.pct}}%
{{total.functions.covered}} / {{total.functions.total}}

Branches

{{total.branches.pct}}%
{{total.branches.covered}} / {{total.branches.total}}

File Coverage

{{#each files}} {{/each}}
File Lines Statements Functions Branches
{{path}} {{lines.pct}}% {{statements.pct}}% {{functions.pct}}% {{branches.pct}}%