Skip to content

Commit

Permalink
doc: instructions for generating coverage reports
Browse files Browse the repository at this point in the history
Add instructions for generating code coverage reports to BUILDING.md
  • Loading branch information
ssbrewster committed Sep 5, 2017
1 parent d932e80 commit 0408aff
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,17 @@ To run the tests:
$ make test
```

To run the tests and generate code coverage reports:

```console
$ ./configure --coverage
$ make coverage
```

This will generate coverage reports for both JavaScript and C++ tests (if you
only want to run the JavaScript tests then you do not need to run the first
command `./configure --coverage`).

To build the documentation:

This will build Node.js first (if necessary) and then use it to build the docs:
Expand Down

0 comments on commit 0408aff

Please sign in to comment.