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

testcafe-reporter-nunit

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

testcafe-reporter-nunit - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name": "testcafe-reporter-nunit",
"version": "0.1.0",
"version": "0.1.1",
"description": "NUnit Test Result XML reporter plugin for TestCafe",

@@ -5,0 +5,0 @@ "main": "src/index",

@@ -70,9 +70,12 @@ var readSync = require('read-file-relative').readSync;

var fixtureDir = path.dirname(this.currentFixture.path);
var virtualPath = path.sep;
var fixtureName = this.currentFixture.name;
if (this.rootPath)
virtualPath += path.relative(this.rootPath, fixtureDir);
if (this.rootPath) {
var virtualPath = path.sep + path.relative(this.rootPath, fixtureDir);
fixtureName = path.join(virtualPath, fixtureName);
}
test = {
name: "'" + path.join(virtualPath, this.currentFixture.name) + "' - " + name,
name: "'" + fixtureName + "' - " + name,
time: testRunInfo.durationMs / 1000,

@@ -79,0 +82,0 @@ result: successToResult(testSuccess),

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