Skip to content

Releases: Hargne/jest-html-reporter

v3.4.0

13 May 10:58
0e23b81
Compare
Choose a tag to compare

Features & Fixes

  • Fixed issue when running as testResultsProcessor where all data would become "undefined"
    Fixes #120
  • Added extra validation for snapshots
  • Upgraded Jest to 26.6.3
  • Updated/fixed broken tests
  • Upgraded rollup.js

v3.3.0

13 Oct 12:21
d8c585c
Compare
Choose a tag to compare

Features & Fixes:

  • Added new optional configuration: includeObsoleteSnapshots that will make the reporter include information about any snapshots that are obsolete at the time of running the test (Thanks to 4eb0da)

v3.2.0

07 Sep 05:19
Compare
Choose a tag to compare

Features & Fixes:

  • Added new optional configuration: includeSuiteFailure that will enable the reporter to print out any syntax errors that completely break the tests. (Thanks to 4eb0da)
  • Updated dependencies

v3.1.3

20 May 07:15
Compare
Choose a tag to compare

Features & Fixes:

  • Fixed issue that would render nested test suites if the tests weren't wrapped inside a describe.
    Fixes #105

v3.1.2

19 May 06:03
Compare
Choose a tag to compare

Features & Fixes:

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

v3.1.1

18 May 15:53
Compare
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
Compare
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
Compare
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
Compare
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
Compare
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