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: jest-community/jest-junit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v11.0.0
Choose a base ref
...
head repository: jest-community/jest-junit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v11.0.1
Choose a head ref
  • 6 commits
  • 4 files changed
  • 2 contributors

Commits on May 25, 2020

  1. Added missing comma

    pjona authored May 25, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LastDragon-ru Aleksei Lebedev
    Copy the full SHA
    703fa4b View commit details

Commits on Jun 22, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LastDragon-ru Aleksei Lebedev
    Copy the full SHA
    45dad80 View commit details
  2. Merge pull request #131 from palmerj3/updateDeps

    Remove testResultsProcessor warning and update dependencies
    palmerj3 authored Jun 22, 2020
    Copy the full SHA
    c93c197 View commit details
  3. v11.0.1

    palmerj3 committed Jun 22, 2020
    Copy the full SHA
    8fa3801 View commit details
  4. Merge pull request #132 from palmerj3/bumpVersion

    v11.0.1
    palmerj3 authored Jun 22, 2020
    Copy the full SHA
    d55925e View commit details
  5. Merge pull request #127 from pjona/patch-1

    Added missing comma
    palmerj3 authored Jun 22, 2020
    Copy the full SHA
    ce3cafd View commit details
Showing with 1,649 additions and 1,164 deletions.
  1. +1 −1 README.md
  2. +0 −2 index.js
  3. +2 −3 package.json
  4. +1,646 −1,158 yarn.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@ Or you can also define a `jest-junit` key in your `package.json`. All are **str
"suiteName": "jest tests",
"outputDirectory": ".",
"outputName": "junit.xml",
"uniqueOutputName": "false"
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
2 changes: 0 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@ const xml = require('xml');
const mkdirp = require('mkdirp');
const fs = require('fs');
const path = require('path');
const jestValidate = require('jest-validate');

const buildJsonResults = require('./utils/buildJsonResults');
const getOptions = require('./utils/getOptions');
@@ -66,7 +65,6 @@ function JestJUnit (globalConfig, options) {
reporters: ['jest-junit']
}, null, 2);

jestValidate.logValidationWarning('testResultsProcessor support is deprecated. Please use jest reporter. See https://github.com/jest-community/jest-junit#usage', newConfig);
return processor(globalConfig);
}

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-junit",
"version": "11.0.0",
"version": "11.0.1",
"description": "A jest reporter that generates junit xml files",
"main": "index.js",
"repository": "https://github.com/jest-community/jest-junit",
@@ -20,14 +20,13 @@
"test:ci": "jest --ci"
},
"dependencies": {
"jest-validate": "^24.9.0",
"mkdirp": "^1.0.4",
"strip-ansi": "^5.2.0",
"uuid": "^3.3.3",
"xml": "^1.0.1"
},
"devDependencies": {
"jest": "^24.9.0",
"jest": "26.0.1",
"libxmljs": "^0.19.7"
}
}
2,804 changes: 1,646 additions & 1,158 deletions yarn.lock

Large diffs are not rendered by default.