docs(testing): fix jest builder documentation regarding coverageDirectory key (#3421)

ISSUES CLOSED: #3420
This commit is contained in:
Ramiro Rivera 2020-07-28 10:53:18 -03:00 committed by GitHub
parent 6ad7179d84
commit de36724e36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ The path to a Jest config file specifying how to find and execute tests. If no r
Type: `string`
An array of regexp pattern strings that are matched against all file paths before executing the test. If the file path matches any of the patterns, coverage information will be skipped.
The directory where Jest should output its coverage files.
### coverageReporters

View File

@ -59,7 +59,7 @@ The path to a Jest config file specifying how to find and execute tests. If no r
Type: `string`
An array of regexp pattern strings that are matched against all file paths before executing the test. If the file path matches any of the patterns, coverage information will be skipped.
The directory where Jest should output its coverage files.
### coverageReporters

View File

@ -123,7 +123,7 @@
"type": "string"
},
"coverageDirectory": {
"description": "An array of regexp pattern strings that are matched against all file paths before executing the test. If the file path matches any of the patterns, coverage information will be skipped.",
"description": "The directory where Jest should output its coverage files.",
"type": "string"
},
"testResultsProcessor": {