asciidoctor / asciidoctor-vscode

AsciiDoc support for Visual Studio Code using Asciidoctor
Other
321 stars 97 forks source link

Add `c8` to allow creation of test coverage reports #864

Closed ViToni closed 3 months ago

ViToni commented 3 months ago

This PR adds c8 to allow creation of test reports. by executing npm run coverage. The configuration file .c8rc excludes the test files themselves from the coverage report and has full coverage enabled (even if some files heven been used at all).

After the tests ran, a textual overview is shown:

grafik

Beside a textual overview a HTML based report is generated at <project-root>/coverage/index.html.

Resolves #863.

ggrossetie commented 3 months ago

Neat! thank you 👍🏻