Releases: Hargne/jest-html-reporter
Releases · Hargne/jest-html-reporter
v3.1.2
Features & Fixes:
- Bumped jest peerDependencies to
26.x(Thanks to @ghoshArnab )
v3.1.1
v3.1.0
v3.0.0
Information
The entire library has been converted into Typescript to improve code quality.
⚠️ Deprecation warnings
The themes lightTheme and darkTheme has been removed from the project and are no longer available to use. The theme option is being deprecated as the only option viable now is defaultTheme
Features & Fixes
- Removed themes
lightThemeanddarkTheme - Complete revamp of the
defaultTheme - Separated test execution time from test result
It is now possible to see the the execution time for failed and pending tests as well as passing - Added information for suites (amount/passed/pending/failed) as a supplement to tests
Fixes #83 - Fixed issue with
executionTimeWarningThreshold - Fixed
preCSS wrapping issues on smaller screens - Fixed title sorting to also sort by test text. (
titleAsc|titleDesc)
The order of sorting is now as follows:testFilePath>ancestorTitles>testTitle
Fixes #55
Maintenance & Chores
v3.0.0-beta.2
Features & Fixes
- Fixed title sorting to also sort by test text. (
titleAsc|titleDesc)
The order of sorting is now as follows:testFilePath>ancestorTitles>testTitle
Fixes #55
v3.0.0-beta.0
Information
In this release, the entire library has been converted into Typescript to improve code quality. This is a potential breaking change, which is why version 3.0.0 initially is released in beta.
Features & Fixes
- Updated colors and font sizes for
lightTheme&darkTheme - Added test information for suites (amount/passed/pending/failed) as a supplement to tests
- Fixed
executionTimeWarningThresholdoption usage - Fixed
preCSS wrapping issues
Maintenance & Chores
- Converted the entire library into Typescript
- Improved test cases
- Added Prettier for code quality
- Switched to Yarn in favour of NPM
v2.8.2
v2.8.1
v2.8.0
v2.7.0
🛠 Fixes
- Added proper handling of console.logs within both tests and the actual code being tested. If
includeConsoleLogis set to true, logs will gather below each connected suite (note not per test).
It is required to set the flagverbose=falsewhen running Jest for this to work properly. - Changed the projects internal test runner to run as a custom reporter by default.