diff --git a/changeLog.md b/changeLog.md index 3d635a7..811817b 100644 --- a/changeLog.md +++ b/changeLog.md @@ -181,4 +181,8 @@ * add sort function and button for sort test by file name by @warakonsantang in https://github.com/Hazyzh/jest-html-reporters/pull/282 * Fix when sort column, hover effect will not working by @warakonsantang in https://github.com/Hazyzh/jest-html-reporters/pull/288 * fix(helper): fix add message method type by @Hazyzh in https://github.com/Hazyzh/jest-html-reporters/pull/294 -* feat/add default content format by @Hazyzh in https://github.com/Hazyzh/jest-html-reporters/pull/295 \ No newline at end of file +* feat/add default content format by @Hazyzh in https://github.com/Hazyzh/jest-html-reporters/pull/295 + +### 3.1.6 + +* skip the pending tests and suites in the final report https://github.com/Hazyzh/jest-html-reporters/issues/298 diff --git a/package.json b/package.json index a112619..66aaa5f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jest-html-reporters", "license": "MIT", - "version": "3.1.5", + "version": "3.1.6", "description": "Jest test results processor for generating a summary in HTML", "main": "index.js", "scripts": { diff --git a/readme.md b/readme.md index df417b0..cbfe0b9 100644 --- a/readme.md +++ b/readme.md @@ -67,6 +67,7 @@ The options below are specific to the reporter. | `enableMergeData` | boolean | false | for default enable merge test data feature | JEST_HTML_REPORTERS_ENABLE_MERGE_DATA | | `dataMergeLevel` | number | 1| default merge test data level |JEST_HTML_REPORTERS_DATA_MERGE_LEVEL| | `env only` | string | system default temporary directory | path to a temporary folder with attachments |JEST_HTML_REPORTERS_TEMP_DIR_PATH | +| `stripSkippedTest` | boolean | false | skip the pending tests and suites in the final report |JEST_HTML_REPORTERS_STRIP_SKIPPED_TEST | --- #### example add config options