-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
PR-URL: #25157 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -290,9 +290,15 @@ $ CI_JS_SUITES=child-process CI_NATIVE_SUITES= make coverage | |
The above command executes tests for the `child-process` subsystem and | ||
outputs the resulting coverage report. | ||
|
||
The `make coverage` command downloads some tools to the project root directory | ||
and overwrites the `lib/` directory. To clean up after generating the coverage | ||
reports: | ||
Alternatively, for the JavaScript test suite, you can use the `CI_JS_SUITES` | ||
variable to run tests in isolation, outputting reports: | ||
|
||
```text | ||
$ CI_JS_SUITES=fs CI_NATIVE_SUITES= make coverage-run-js | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bcoe
Author
Contributor
|
||
``` | ||
|
||
The `make coverage` command downloads some tools to the project root directory. | ||
To clean up after generating the coverage reports: | ||
|
||
```console | ||
$ make coverage-clean | ||
|
This file was deleted.
I thought we decided to include a note about
CI_NATIVE_SUITES=