@reportportal/client-javascript
Advanced tools
Comparing version 5.1.3 to 5.1.4
@@ -335,3 +335,4 @@ /* eslint-disable quotes,no-console,class-methods-use-this */ | ||
}); | ||
const launchSearchUrl = `launch?${params.toString()}`; | ||
const launchSearchUrl = this.config.mode === 'DEBUG' ? | ||
`launch/mode?${params.toString()}` : `launch?${params.toString()}`; | ||
this.logDebug(`Find launches with UUIDs to merge: ${launchUUIds}`); | ||
@@ -357,4 +358,7 @@ return this.restClient | ||
}) | ||
.then(() => { | ||
.then((response) => { | ||
this.logDebug(`Launches with UUIDs: ${launchUUIds} were successfully merged!`); | ||
if (this.config.launchUuidPrint) { | ||
this.config.launchUuidPrintOutput(response.uuid); | ||
} | ||
}) | ||
@@ -361,0 +365,0 @@ .catch((error) => { |
{ | ||
"name": "@reportportal/client-javascript", | ||
"version": "5.1.3", | ||
"version": "5.1.4", | ||
"description": "ReportPortal client for Node.js", | ||
@@ -5,0 +5,0 @@ "author": "ReportPortal.io", |
Sorry, the diff of this file is not supported yet
81570
1368