Skip to content

Releases: Hargne/jest-html-reporter

v3.1.2

19 May 06:03

Choose a tag to compare

Features & Fixes:

  • Bumped jest peerDependencies to 26.x (Thanks to @ghoshArnab )

v3.1.1

18 May 15:53

Choose a tag to compare

Features & Fixes:

  • Fixed issue when running on Node v14.0.0
    Fixes #104

v3.1.0

08 Apr 09:26
6154e5e

Choose a tag to compare

Features & Fixes:

  • Fixed crash when running without any configuration options
    Fixes #96
  • Re-added the functionality of replacing Jest's own <rootDir> to the actual configured root directory
    Fixes #98
  • Added and rewrote append method to append the report HTML inside the body tag of the provided file.

v3.0.0

30 Mar 11:05
ff12e93

Choose a tag to compare

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 lightTheme and darkTheme
  • 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 pre CSS 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

  • Converted the entire library into Typescript
  • Improved test cases
  • Added usage of Prettier for code quality
  • Switched to Yarn, in favour of NPM

v3.0.0-beta.2

24 Mar 08:57

Choose a tag to compare

v3.0.0-beta.2 Pre-release
Pre-release

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

23 Mar 17:40

Choose a tag to compare

v3.0.0-beta.0 Pre-release
Pre-release

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 executionTimeWarningThreshold option usage
  • Fixed pre CSS 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

23 Mar 07:57
4051a38

Choose a tag to compare

Features / Fixes

  • Removed sorting of console.logs appearing in tests by default. It is possible to add this as a configurable feature if needed, but as of now there is no particular use-case for it.
    Fixes: #87
  • Updated Jest to 25.1.0 - Also updated Peer Dependencies to cater for Jest 25+
    Fixes: #86

v2.8.1

18 Mar 17:56
9f8b183

Choose a tag to compare

Features/Fixes

v2.8.0

10 Dec 14:42
80a5b06

Choose a tag to compare

🌟 New Features

  • #81 New option: append
    Setting this to true will append the latest test report to the existing report.
  • Modified default themes to adhere to the append option by adding a bottom margin to the test body.

v2.7.0

05 Nov 12:49
61e47ca

Choose a tag to compare

🛠 Fixes

  • Added proper handling of console.logs within both tests and the actual code being tested. If includeConsoleLog is set to true, logs will gather below each connected suite (note not per test).
    It is required to set the flag verbose=false when running Jest for this to work properly.
  • Changed the projects internal test runner to run as a custom reporter by default.