From 42ca87b2f289e5503461b706c801d4cb74afccde Mon Sep 17 00:00:00 2001 From: mrazauskas <72159681+mrazauskas@users.noreply.github.com> Date: Tue, 28 Sep 2021 16:36:22 +0300 Subject: [PATCH] docs: fix regression --- docs/Configuration.md | 6 ++---- website/versioned_docs/version-25.x/Configuration.md | 6 ++---- website/versioned_docs/version-26.x/Configuration.md | 6 ++---- website/versioned_docs/version-27.0/Configuration.md | 6 ++---- website/versioned_docs/version-27.1/Configuration.md | 7 ++----- website/versioned_docs/version-27.2/Configuration.md | 6 ++---- 6 files changed, 12 insertions(+), 25 deletions(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 9916661b11b2..b36987a84352 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -220,7 +220,7 @@ Indicates which provider should be used to instrument code for coverage. Allowed Note that using `v8` is considered experimental. This uses V8's builtin code coverage rather than one based on Babel. It is not as well tested, and it has also improved in the last few releases of Node. Using the latest versions of node (v14 at the time of this writing) will yield better results. -### `coverageReporters` \[array<string | [string, options]>] +### `coverageReporters` \[array<string | \[string, options]>] Default: `["clover", "json", "lcov", "text"]` @@ -232,9 +232,7 @@ Additional options can be passed using the tuple form. For example, you may hide ```json { - "coverageReporters": [ - "clover", "json", "lcov", ["text", {"skipFull": true}] - ] + "coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] } ``` diff --git a/website/versioned_docs/version-25.x/Configuration.md b/website/versioned_docs/version-25.x/Configuration.md index 34106cc4bbb6..c525be374165 100644 --- a/website/versioned_docs/version-25.x/Configuration.md +++ b/website/versioned_docs/version-25.x/Configuration.md @@ -202,7 +202,7 @@ Note that using `v8` is considered experimental. This uses V8's builtin code cov 1. Tests needs to run in Node test environment (support for `jsdom` requires [`jest-environment-jsdom-sixteen`](https://www.npmjs.com/package/jest-environment-jsdom-sixteen)) 1. V8 has way better data in the later versions, so using the latest versions of node (v13 at the time of this writing) will yield better results -### `coverageReporters` \[array<string | [string, options]>] +### `coverageReporters` \[array<string | \[string, options]>] Default: `["clover", "json", "lcov", "text"]` @@ -214,9 +214,7 @@ Additional options can be passed using the tuple form. For example, you may hide ```json { - "coverageReporters": [ - "clover", "json", "lcov", ["text", {"skipFull": true}] - ] + "coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] } ``` diff --git a/website/versioned_docs/version-26.x/Configuration.md b/website/versioned_docs/version-26.x/Configuration.md index eac16d218976..ae456a6a93db 100644 --- a/website/versioned_docs/version-26.x/Configuration.md +++ b/website/versioned_docs/version-26.x/Configuration.md @@ -220,7 +220,7 @@ Indicates which provider should be used to instrument code for coverage. Allowed Note that using `v8` is considered experimental. This uses V8's builtin code coverage rather than one based on Babel. It is not as well tested, and it has also improved in the last few releases of Node. Using the latest versions of node (v14 at the time of this writing) will yield better results. -### `coverageReporters` \[array<string | [string, options]>] +### `coverageReporters` \[array<string | \[string, options]>] Default: `["clover", "json", "lcov", "text"]` @@ -232,9 +232,7 @@ Additional options can be passed using the tuple form. For example, you may hide ```json { - "coverageReporters": [ - "clover", "json", "lcov", ["text", {"skipFull": true}] - ] + "coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] } ``` diff --git a/website/versioned_docs/version-27.0/Configuration.md b/website/versioned_docs/version-27.0/Configuration.md index 6e51625a429f..bab0a9e9074a 100644 --- a/website/versioned_docs/version-27.0/Configuration.md +++ b/website/versioned_docs/version-27.0/Configuration.md @@ -220,7 +220,7 @@ Indicates which provider should be used to instrument code for coverage. Allowed Note that using `v8` is considered experimental. This uses V8's builtin code coverage rather than one based on Babel. It is not as well tested, and it has also improved in the last few releases of Node. Using the latest versions of node (v14 at the time of this writing) will yield better results. -### `coverageReporters` \[array<string | [string, options]>] +### `coverageReporters` \[array<string | \[string, options]>] Default: `["clover", "json", "lcov", "text"]` @@ -232,9 +232,7 @@ Additional options can be passed using the tuple form. For example, you may hide ```json { - "coverageReporters": [ - "clover", "json", "lcov", ["text", {"skipFull": true}] - ] + "coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] } ``` diff --git a/website/versioned_docs/version-27.1/Configuration.md b/website/versioned_docs/version-27.1/Configuration.md index 91c466b4f483..8e68c280a495 100644 --- a/website/versioned_docs/version-27.1/Configuration.md +++ b/website/versioned_docs/version-27.1/Configuration.md @@ -220,8 +220,7 @@ Indicates which provider should be used to instrument code for coverage. Allowed Note that using `v8` is considered experimental. This uses V8's builtin code coverage rather than one based on Babel. It is not as well tested, and it has also improved in the last few releases of Node. Using the latest versions of node (v14 at the time of this writing) will yield better results. - -### `coverageReporters` \[array<string | [string, options]>] +### `coverageReporters` \[array<string | \[string, options]>] Default: `["clover", "json", "lcov", "text"]` @@ -233,9 +232,7 @@ Additional options can be passed using the tuple form. For example, you may hide ```json { - "coverageReporters": [ - "clover", "json", "lcov", ["text", {"skipFull": true}] - ] + "coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] } ``` diff --git a/website/versioned_docs/version-27.2/Configuration.md b/website/versioned_docs/version-27.2/Configuration.md index 9916661b11b2..b36987a84352 100644 --- a/website/versioned_docs/version-27.2/Configuration.md +++ b/website/versioned_docs/version-27.2/Configuration.md @@ -220,7 +220,7 @@ Indicates which provider should be used to instrument code for coverage. Allowed Note that using `v8` is considered experimental. This uses V8's builtin code coverage rather than one based on Babel. It is not as well tested, and it has also improved in the last few releases of Node. Using the latest versions of node (v14 at the time of this writing) will yield better results. -### `coverageReporters` \[array<string | [string, options]>] +### `coverageReporters` \[array<string | \[string, options]>] Default: `["clover", "json", "lcov", "text"]` @@ -232,9 +232,7 @@ Additional options can be passed using the tuple form. For example, you may hide ```json { - "coverageReporters": [ - "clover", "json", "lcov", ["text", {"skipFull": true}] - ] + "coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] } ```