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:
Beside a textual overview a HTML based report is generated at <project-root>/coverage/index.html.
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:
Beside a textual overview a HTML based report is generated at
<project-root>/coverage/index.html
.Resolves #863.