wdio-reportportal-reporter
Advanced tools
Comparing version 0.0.14 to 0.0.15
@@ -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'); |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1342
1
57387