Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 423 Bytes

unit-testing-and-code-coverage-reports.md

File metadata and controls

22 lines (14 loc) · 423 Bytes

↤ Developer Overview

Unit Testing and Code Coverage Reports

Unit Tests

Unit tests are run with PHPUnit. All unit tests exist in the tests/ directory.

npm run test

Code Coverage

To generate Code Coverage Reports, run:

npm run test-coverage

This will generate an HTML report that you can access via ./reports/clover_html/index.html