Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Hargne/jest-html-reporter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a66cca4b0e8f07bc3b17da61bb23638034ece0ba
Choose a base ref
...
head repository: Hargne/jest-html-reporter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.10.2
Choose a head ref
  • 6 commits
  • 5 files changed
  • 3 contributors

Commits on Jun 22, 2023

  1. Update README.md

    Hargne committed Jun 22, 2023
    Copy the full SHA
    bbbdb75 View commit details

Commits on Jul 11, 2023

  1. Bump semver from 5.7.1 to 5.7.2

    Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2.
    - [Release notes](https://github.com/npm/node-semver/releases)
    - [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md)
    - [Commits](npm/node-semver@v5.7.1...v5.7.2)
    
    ---
    updated-dependencies:
    - dependency-name: semver
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jul 11, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8b6f8ab View commit details
  2. Merge pull request #168 from Hargne/dependabot/npm_and_yarn/semver-5.7.2

    Bump semver from 5.7.1 to 5.7.2
    Hargne authored Jul 11, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ce030b8 View commit details

Commits on Aug 17, 2023

  1. move @babel deps into devDependencies

    fixes #171
    KatSick committed Aug 17, 2023
    Copy the full SHA
    b4a9d0c View commit details

Commits on Aug 21, 2023

  1. Merge pull request #172 from KatSick/master

    move @babel deps into devDependencies
    Hargne authored Aug 21, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8b4ff30 View commit details
  2. Bumped versio

    Hargne committed Aug 21, 2023
    Copy the full SHA
    3f2583a View commit details
Showing with 27 additions and 26 deletions.
  1. +1 −1 README.md
  2. +12 −11 package.json
  3. +3 −3 src/htmlreporter.ts
  4. +2 −2 src/index.ts
  5. +9 −9 yarn.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@

## Installation

**npm:**:
**npm:**

```
$ npm install jest-html-reporter --save-dev
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-html-reporter",
"version": "3.10.1",
"version": "3.10.2",
"description": "Jest test results processor for generating a summary in HTML",
"main": "dist/index.js",
"unpkg": "dist/index.js",
@@ -37,23 +37,22 @@
"node": ">=4.8.3"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@jest/console": "^29.0.2",
"@jest/test-result": "^29.0.2",
"@jest/types": "^29.0.2",
"dateformat": "3.0.2",
"mkdirp": "^1.0.3",
"sinon": "^9.0.1",
"dateformat": "3.0.2",
"strip-ansi": "6.0.1",
"xmlbuilder": "15.0.0"
"xmlbuilder": "15.0.0",
"@jest/test-result": "^29.0.2",
"@jest/types": "^29.0.2"
},
"peerDependencies": {
"jest": "19.x - 29.x",
"typescript": "^3.7.x || ^4.3.x || ^5.x"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@jest/console": "^29.0.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/dateformat": "^3.0.X",
@@ -65,12 +64,14 @@
"jest": "^29.0.2",
"rollup": "2.47.0",
"rollup-plugin-terser": "7.0.2",
"sinon": "^9.0.1",
"ts-jest": "^29.0.0",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.x"
},
"browserslist": [
"since 2017-06"
]
],
"packageManager": "yarn@1.22.19"
}
6 changes: 3 additions & 3 deletions src/htmlreporter.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { AggregatedResult, TestResult } from "@jest/test-result";
import { Config } from "@jest/types";
import type { AggregatedResult, TestResult } from "@jest/test-result";
import type { Config } from "@jest/types";
import dateformat from "dateformat";
import fs from "fs";
import mkdirp from "mkdirp";
import path from "path";
import {
import type {
IJestHTMLReporterConfig,
IJestHTMLReporterConfigOptions,
IJestHTMLReporterConsole,
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AggregatedResult, TestResult } from "@jest/test-result";
import { Circus, Config } from "@jest/types";
import type { AggregatedResult, TestResult } from "@jest/test-result";
import type { Circus, Config } from "@jest/types";

import htmlreporter from "./htmlreporter";
import {
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -2891,21 +2891,21 @@ safe-buffer@^5.1.0:
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==

semver@7.x, semver@^7.3.5:
version "7.5.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0"
integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==
version "7.5.4"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
dependencies:
lru-cache "^6.0.0"

semver@^5.3.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
version "5.7.2"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==

semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==

serialize-javascript@^4.0.0:
version "4.0.0"