Releases: Hargne/jest-html-reporter
Releases · Hargne/jest-html-reporter
v4.3.1
v4.3.0
What's Changed
- Added new configuration option
hideConsoleLogOrigin
which will opt out of console log stack traces by @lararojasmr in #199 - Added theme:
darkTheme
by @lararojasmr in #199
New Contributors
- @lararojasmr made their first contribution in #199
Full Changelog: 4.2.0...4.3.0
v4.2.0
What's Changed
- Added support for Jest 30.x by @Hargne in #201
- Bump @babel/helpers from 7.26.7 to 7.26.10 by @dependabot in #198
Full Changelog: 4.1.0...4.2.0
v4.1.0
v4.0.1
v4.0.0
⚠️ Breaking Changes
- The environment variable for statusIgnoreFilter has changed from
JEST_HTML_REPORTER_STATUS_FILTER
->JEST_HTML_REPORTER_STATUS_IGNORE_FILTER
to follow the pattern.
🚀 New Features / Improvements
- Added customizable status sort order:
"sort": "status:failed,passed,pending"
(fixes #178 ) - Improved accessibility for test report HTML
- Appropriate HTML elements (
main
,section
,details
etc.) are now used instead of usingdiv
🐞 Fixes
- Revised configuration options in README and fixed incorrect default value for
pageTitle
("Test Suite" -> "Test Report") - Set minimum viable
Node
version to>= 14
🧹 Chores
- Upgraded
Rollup
v2
->v4
- Upgraded
Typescript
v4
->v5
- Removed
Babel
- Replaced
tslint
witheslint
and fixed linting errors - Broke out utility methods to improve readability and testability
- Moved tests to lie next to the file it is testing
- Reworked Github workflow where the project is installed and run on various node versions against targeted Jest versions. These additional checks adds another chance to catch environmentally-specific bugs when releasing new features and fixes.
- Removed multiple unused files
Full Changelog: 3.10.2...4.0.0
v3.10.2
What's Changed
- Adding npm install instructions to README by @shreypuranik in #167
- Bump semver from 5.7.1 to 5.7.2 by @dependabot in #168
- move @babel deps into devDependencies by @KatSick in #172
New Contributors
- @shreypuranik made their first contribution in #167
- @KatSick made their first contribution in #172
Full Changelog: 3.10.0...3.10.2
v3.10.0
v3.9.0
v3.8.0
What's Changed
- Fixed issue where if
append
config option was set totrue
, only the outer html-tag would be stripped ultimately resulting in duplicated body/script/css-tags. - Updated tests accordingly
- Breaking Change: Changed wrapper div with id
#jesthtml-content
to class:.jesthtml-content