11 lines
362 B
Plaintext
11 lines
362 B
Plaintext
---
|
|
permalink: coverage.md
|
|
---
|
|
# Code Coverage for Eleventy v{{ pkg.version }}
|
|
|
|
| Filename | % Lines | % Statements | % Functions | % Branches |
|
|
| --- | --- | --- | --- | --- |
|
|
{% for file, line in coverage -%}
|
|
| `{{ file | removeDir }}` | {{ line.lines.pct }}% | {{ line.statements.pct }}% | {{ line.functions.pct }}% | {{ line.branches.pct }}% |
|
|
{% endfor -%}
|