From 54e0735d62d6ee15ad675ba8e8be0bfb5329c9a3 Mon Sep 17 00:00:00 2001 From: Eliphaz Bouye Date: Fri, 26 Apr 2024 12:41:24 +0000 Subject: [PATCH 1/3] doc: clarify usage of coverage reporters --- doc/api/test.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/api/test.md b/doc/api/test.md index d86c2cfc0bfb13..aaf8aef2aa13ce 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -508,6 +508,9 @@ used as an in depth coverage report. node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ``` +- No test results are reported by this reporter. +- This reporter should ideally be used in conjunction with another reporter. + ### Limitations The test runner's code coverage functionality does not support excluding From ce14cecf559d96a68f0c160999b47a9b55c97f46 Mon Sep 17 00:00:00 2001 From: Eliphaz Bouye Date: Fri, 26 Apr 2024 14:48:36 +0000 Subject: [PATCH 2/3] doc: change '-' by '*' to respect documention rules --- doc/api/test.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/test.md b/doc/api/test.md index aaf8aef2aa13ce..780225b4559712 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -508,8 +508,8 @@ used as an in depth coverage report. node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ``` -- No test results are reported by this reporter. -- This reporter should ideally be used in conjunction with another reporter. +* No test results are reported by this reporter. +* This reporter should ideally be used in conjunction with another reporter. ### Limitations From 50e3a37370c80eb33fd94dbc248ed52e5786bec5 Mon Sep 17 00:00:00 2001 From: Eliphaz Bouye Date: Thu, 20 Jun 2024 22:43:43 +0000 Subject: [PATCH 3/3] doc: change "in conjunction with" to "alongside" Change it to make it for easier to understand --- doc/api/test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/test.md b/doc/api/test.md index 780225b4559712..41ad52ce124bb1 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -509,7 +509,7 @@ node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-de ``` * No test results are reported by this reporter. -* This reporter should ideally be used in conjunction with another reporter. +* This reporter should ideally be used alongside another reporter. ### Limitations