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

wdio-reportportal-reporter

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wdio-reportportal-reporter - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

6

build/reporter.js

@@ -305,5 +305,7 @@ "use strict";

class TestEndObj {
constructor(status, issue = new Issue("NOT_ISSUE")) {
constructor(status, issue) {
this.status = status;
this.issue = issue;
if (issue) {
this.issue = issue;
}
}

@@ -310,0 +312,0 @@ }

@@ -365,5 +365,7 @@ import { EventEmitter } from "events";

public description?: string;
constructor(status: STATUS, issue = new Issue("NOT_ISSUE")) {
constructor(status: STATUS, issue: Issue) {
this.status = status;
this.issue = issue;
if (issue) {
this.issue = issue;
}
}

@@ -370,0 +372,0 @@ }

{
"name": "wdio-reportportal-reporter",
"version": "0.0.14",
"version": "0.0.15",
"description": "A WebdriverIO plugin. Report results to Report Portal.",

@@ -5,0 +5,0 @@ "main": "build/reporter.js",

@@ -15,3 +15,3 @@ WDIO Report Portal Reporter

"devDependencies": {
"wdio-reportportal-reporter": "~0.0.13"
"wdio-reportportal-reporter": "~0.0.14"
}

@@ -18,0 +18,0 @@ }

@@ -0,0 +0,0 @@ const reporter = require('../../../build/reporter');

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