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: karma-runner/karma-junit-reporter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.6
Choose a base ref
...
head repository: karma-runner/karma-junit-reporter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.7
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Sep 30, 2015

  1. Copy the full SHA
    2205f47 View commit details
  2. Merge pull request #70 from adriaanthomas/fix-noent-dir

    fix(reporter): bug creating directory when outputFile specified (#67)
    dignifiedquire committed Sep 30, 2015
    Copy the full SHA
    ab9b155 View commit details

Commits on Oct 1, 2015

  1. Copy the full SHA
    b0ab874 View commit details
  2. chore: release v0.3.7

    dignifiedquire committed Oct 1, 2015
    Copy the full SHA
    d9660d8 View commit details
Showing with 16 additions and 5 deletions.
  1. +10 −0 CHANGELOG.md
  2. +1 −1 index.js
  3. +5 −4 package.json
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="0.3.7"></a>
## [0.3.7](https://github.com/karma-runner/karma-junit-reporter/compare/v0.3.6...v0.3.7) (2015-10-01)


### Bug Fixes

* **reporter:** bug creating directory when outputFile specified (#67) ([2205f47](https://github.com/karma-runner/karma-junit-reporter/commit/2205f47))



<a name="0.3.6"></a>
## [0.3.6](https://github.com/karma-runner/karma-junit-reporter/compare/v0.3.5...v0.3.6) (2015-09-29)

2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ var JUnitReporter = function (baseReporterDecorator, config, logger, helper, for
}

pendingFileWritings++
helper.mkdirIfNotExists(outputDir, function () {
helper.mkdirIfNotExists(path.dirname(newOutputFile), function () {
fs.writeFile(newOutputFile, xmlToOutput.end({pretty: true}), function (err) {
if (err) {
log.warn('Cannot write JUnit xml\n\t' + err.message)
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "karma-junit-reporter",
"version": "0.3.6",
"version": "0.3.7",
"description": "A Karma plugin. Report results in junit xml format.",
"main": "index.js",
"files": [
@@ -44,6 +44,7 @@
"Friedel Ziegelmayer <friedel.ziegelmayer@gmail.com>",
"Simen Bekkhus <sbekkhus91@gmail.com>",
"Janek Lasocki-Biczysko <iamjanek@gmail.com>",
"Janek Lasocki-Biczysko <j.lasocki-biczysko@intrallect.com>",
"John Haugeland <stonecypher@gmail.com>",
"Kira Cheung <killercentury@gmail.com>",
"Maksim Ryzhikov <rv.maksim@gmail.com>",
@@ -53,12 +54,12 @@
"Vladimir Alaev <scff@yandex-team.ru>",
"budde377 <budde377@gmail.com>",
"mon.asuncion <mon@englishcentral.com>",
"Alex Alvarez <dominalexican@gmail.com>",
"Adriaan Thomas <athomas@xebia.com>",
"sylvain-hamel <sylvainhamel0@gmail.com>",
"Alex Alvarez <dominalexican@gmail.com>",
"Brian Donovan <me@brian-donovan.com>",
"Brian Meneses <brian.meneses@gmail.com>",
"Cesar Andreu <cesarandreu@gmail.com>",
"David Pärsson <david@parsson.se>",
"Janek Lasocki-Biczysko <j.lasocki-biczysko@intrallect.com>"
"David Pärsson <david@parsson.se>"
]
}