You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: apps/site/pages/en/learn/test-runner/collecting-code-coverage.md
+28-14
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ authors: RedYetiDev
8
8
9
9
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.
10
10
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
+
11
13
## What is code coverage?
12
14
13
15
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
16
18
17
19
Let's walk through a simple example to demonstrate how code coverage works in Node.js.
18
20
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.
20
22
21
23
```cjs displayName="main.js"
22
24
functionadd(a, b) {
@@ -51,11 +53,14 @@ In the module, we have three functions: `add`, `isEven`, and `multiply`.
51
53
52
54
In the test file, we are testing the `add()` and `isEven()` functions. Notice that the `multiply()` function is not covered by any tests.
53
55
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:
After running the tests, you'll receive a report that looks something like this:
61
66
@@ -205,9 +210,9 @@ Each of these different methods will produce the same report, with 100% code cov
205
210
206
211
Node.js offers two CLI arguments for managing the inclusion or exclusion of specific files in a coverage report.
207
212
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.
209
214
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.
211
216
212
217
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.
213
218
@@ -233,11 +238,14 @@ These flags can be used multiple times, and when both are used together, files m
233
238
ℹ end of coverage report
234
239
```
235
240
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.
@@ -252,11 +260,14 @@ node --experimental-test-coverage --test-coverage-exclude=src/age.js --test main
252
260
ℹ end of coverage report
253
261
```
254
262
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.
@@ -277,15 +288,18 @@ By default, when all tests pass, Node.js exits with code `0`, which indicates a
277
288
278
289
Node.js currently supports thresholds for all three of the coverages supported:
279
290
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.
283
294
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).
0 commit comments