Skip to content

Commit 0ddcfca

Browse files
authored
fixup! add run() API support
Signed-off-by: Aviv Keller <[email protected]>
1 parent 96a6fb4 commit 0ddcfca

File tree

1 file changed

+28
-14
lines changed

1 file changed

+28
-14
lines changed

apps/site/pages/en/learn/test-runner/collecting-code-coverage.md

+28-14
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ authors: RedYetiDev
88

99
Node.js provides built-in support for code coverage through its test runner, which can be enabled using the [`--experimental-code-coverage`](https://nodejs.org/api/cli.html#--experimental-test-coverage) flag.
1010

11+
If using the `run()` API, the `coverage` option must be set to `true`. For more information on the `run()` API, see [the `node:test` documentation](https://nodejs.org/docs/latest/api/test.html#runoptions).
12+
1113
## What is code coverage?
1214

1315
Code coverage is a metric for test runners that gauges how much of a program’s source code is executed during testing. It reveals which portions of the codebase are tested and which are not, helping to pinpoint gaps in the test suite. This ensures more comprehensive testing of the software and minimizes the risk of undetected bugs. Typically expressed as a percentage, higher code coverage percentages indicate more thorough test coverage. For a more detailed explanation of code coverage, you can refer to the ["Code coverage" Wikipedia article](https://en.wikipedia.org/wiki/Code_coverage).
@@ -16,7 +18,7 @@ Code coverage is a metric for test runners that gauges how much of a program’s
1618

1719
Let's walk through a simple example to demonstrate how code coverage works in Node.js.
1820

19-
> **Note:** This example is written using CommonJS. If you are unfamiliar with this concept, please read the [CommonJS Modules](https://nodejs.org/docs/latest/api/modules.html) documentation.
21+
> **Note:** This example, and all other ones in this file, are written using CommonJS. If you are unfamiliar with this concept, please read the [CommonJS Modules](https://nodejs.org/docs/latest/api/modules.html) documentation.
2022
2123
```cjs displayName="main.js"
2224
function add(a, b) {
@@ -51,11 +53,14 @@ In the module, we have three functions: `add`, `isEven`, and `multiply`.
5153

5254
In the test file, we are testing the `add()` and `isEven()` functions. Notice that the `multiply()` function is not covered by any tests.
5355

54-
To collect code coverage while running your tests, use the following command:
56+
To collect code coverage while running your tests, see the following snippets:
5557

56-
```bash
58+
```bash displayName="CLI"
5759
node --experimental-test-coverage --test main.test.js
5860
```
61+
```js displayName="run()"
62+
run({ files: ['main.test.js'], coverage: true });
63+
```
5964

6065
After running the tests, you'll receive a report that looks something like this:
6166

@@ -205,9 +210,9 @@ Each of these different methods will produce the same report, with 100% code cov
205210

206211
Node.js offers two CLI arguments for managing the inclusion or exclusion of specific files in a coverage report.
207212

208-
The [`--test-coverage-include`](https://nodejs.org/api/cli.html#--test-coverage-include) flag restricts the coverage to files that match the provided glob pattern. By default, files in the `/node_modules/` directory are excluded, but this flag allows you to explicitly include them.
213+
The [`--test-coverage-include`](https://nodejs.org/api/cli.html#--test-coverage-include) flag (`coverageIncludeGlobs` in the `run()` API) restricts the coverage to files that match the provided glob pattern. By default, files in the `/node_modules/` directory are excluded, but this flag allows you to explicitly include them.
209214

210-
The [`--test-coverage-exclude`](https://nodejs.org/api/cli.html#--test-coverage-exclude) flag omits files that match the given glob pattern from the coverage report.
215+
The [`--test-coverage-exclude`](https://nodejs.org/api/cli.html#--test-coverage-exclude) flag (`coverageExcludeGlobs` in the `run()` API) omits files that match the given glob pattern from the coverage report.
211216

212217
These flags can be used multiple times, and when both are used together, files must adhere to the inclusion rules, while also avoiding the exclusion rules.
213218

@@ -233,11 +238,14 @@ These flags can be used multiple times, and when both are used together, files m
233238
ℹ end of coverage report
234239
```
235240

236-
`src/age.js` has less-than-optimal coverage in the report above, but with the `--test-coverage-exclude` flag, it can be excluded from the report entirely.
241+
`src/age.js` has less-than-optimal coverage in the report above, but with the `--test-coverage-exclude` flag (`coverageExcludeGlobs` in the `run()` API), it can be excluded from the report entirely.
237242

238-
```bash
243+
```bash displayName="CLI"
239244
node --experimental-test-coverage --test-coverage-exclude=src/age.js --test main.test.js
240245
```
246+
```js displayName="run()"
247+
run({ files: ['main.test.js'], coverage: true, coverageExclude: ['src/age.js'] });
248+
```
241249

242250
```text displayName="New coverage report"
243251
ℹ start of coverage report
@@ -252,11 +260,14 @@ node --experimental-test-coverage --test-coverage-exclude=src/age.js --test main
252260
ℹ end of coverage report
253261
```
254262

255-
Our test file is also included in this coverage report, but we only want JavaScript files in the `src/` directory. The `--test-coverage-include` flag can be used in this case.
263+
Our test file is also included in this coverage report, but we only want JavaScript files in the `src/` directory. The `--test-coverage-include` flag (`coverageIncludeGlobs` in the `run()` API) can be used in this case.
256264

257-
```bash
265+
```bash displayName="CLI"
258266
node --experimental-test-coverage --test-coverage-include=src/*.js --test main.test.js
259267
```
268+
```js displayName="run()"
269+
run({ files: ['main.test.js'], coverage: true, coverageInclude: ['src/*.js'] });
270+
```
260271

261272
```text displayName="New coverage report"
262273
ℹ start of coverage report
@@ -277,15 +288,18 @@ By default, when all tests pass, Node.js exits with code `0`, which indicates a
277288

278289
Node.js currently supports thresholds for all three of the coverages supported:
279290

280-
- [`--test-coverage-lines`](https://nodejs.org/api/cli.html#--test-coverage-linesthreshold) for line coverage.
281-
- [`--test-coverage-branches`](https://nodejs.org/api/cli.html#--test-coverage-branchesthreshold) for branch coverage.
282-
- [`--test-coverage-functions`](https://nodejs.org/api/cli.html#--test-coverage-functionsthreshold) for function coverage.
291+
- [`--test-coverage-lines`](https://nodejs.org/api/cli.html#--test-coverage-linesthreshold) (`lineCoverage` in the `run()` API) for line coverage.
292+
- [`--test-coverage-branches`](https://nodejs.org/api/cli.html#--test-coverage-branchesthreshold) (`branchCoverage` in the `run()` API) for branch coverage.
293+
- [`--test-coverage-functions`](https://nodejs.org/api/cli.html#--test-coverage-functionsthreshold) (`functionCoverage` in the `run()` API) for function coverage.
283294

284-
If you wanted to require the previous example to have line coverage >= 90%, you could use the `--test-coverage-lines=90` flag.
295+
If you wanted to require the previous example to have line coverage >= 90%, you could use the `--test-coverage-lines=90` flag (`lineCoverage: 90` in the `run()` API).
285296

286-
```bash
297+
```bash displayName="CLI"
287298
node --experimental-test-coverage --test-coverage-lines=90 --test main.test.js
288299
```
300+
```js displayName="run()"
301+
run({ files: ['main.test.js'], coverage: true, lineCoverage: 90 });
302+
```
289303

290304
```text displayName="Coverage Report"
291305
ℹ start of coverage report

0 commit comments

Comments
 (0)