New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wdio/junit-reporter

Package Overview
Dependencies
Maintainers
3
Versions
307
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wdio/junit-reporter - npm Package Compare versions

Comparing version 8.15.10 to 8.16.1

1

build/index.d.ts

@@ -29,4 +29,5 @@ import type { RunnerStats, TestStats } from '@wdio/reporter';

private _format;
private _sameFileName;
}
export default JunitReporter;
//# sourceMappingURL=index.d.ts.map

@@ -245,3 +245,3 @@ import url from 'node:url';

const suite = this.suites[suiteKey];
const sameSpecFileName = url.fileURLToPath(specFileName) === suite.file;
const sameSpecFileName = this._sameFileName(specFileName, suite.file);
if (isCucumberFrameworkRunner && suite.type === type && sameSpecFileName) {

@@ -276,3 +276,9 @@ builder = this._addCucumberFeatureToBuilder(builder, runner, specFileName, suite);

}
_sameFileName(file1, file2) {
// ensure both files are not a file URL
file1 = file1?.startsWith('file://') ? url.fileURLToPath(file1) : file1;
file2 = file2?.startsWith('file://') ? url.fileURLToPath(file2) : file2;
return file1 === file2;
}
}
export default JunitReporter;

4

package.json
{
"name": "@wdio/junit-reporter",
"version": "8.15.10",
"version": "8.16.1",
"description": "A WebdriverIO reporter that creates Jenkins compatible XML based JUnit reports",

@@ -45,3 +45,3 @@ "author": "Christian Bromann <mail@bromann.dev>",

},
"gitHead": "63a02b672216ae86a58475746a5eed5adf0d736f"
"gitHead": "4990bcc97ad93aa1b22ab4c93b32e6e3a7786887"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc